/* --------- RESET BÁSICO --------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: #262626; /* gris plomo oscuro */
  color: #f2f2f2;
  line-height: 1.6;
}

/* --------- COLORES BASE --------- */
:root {
  --bg-main: #262626;
  --bg-soft: #2f2f2f;
  --bg-card: #1f1f1f;
  --accent: #c79a4a; /* bronce dorado */
  --accent-soft: #8f6c31;
  --text-muted: #b3b3b3;
  --border-soft: #3a3a3a;
  --shadow-soft: 0 18px 35px rgba(0, 0, 0, 0.6);
}

/* --------- PANTALLA INTRO --------- */
.intro-screen {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #333 0, #262626 45%, #101010 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.intro-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.intro-inner {
  text-align: center;
  padding: 2.5rem 2rem;
}

.intro-logo {
  width: 480px;
  max-width: 60vw;
  display: block;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.7));
}

.intro-title {
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.intro-title span {
  font-size: 1.6rem;
}

.intro-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.intro-btn {
  margin-top: 1.5rem;
  padding: 0.85rem 2.4rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #111;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.intro-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.75);
}

/* --------- ENVOLTORIO DEL SITIO --------- */
.site-wrapper {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.site-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------- HEADER & NAV --------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to right,
    rgba(19, 19, 19, 0.96),
    rgba(19, 19, 19, 0.88)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.6rem 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.site-logo {
  width: 46px;
  height: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-family: "Orbitron", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.logo-main {
  font-size: 0.9rem;
  color: var(--accent);
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  color: #e7e7e7;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.2rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* --------- HERO --------- */
.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: 4rem 7vw 3rem;
  background: radial-gradient(circle at top left, #333 0, #262626 45%, #101010 100%);
}

.hero-content {
  max-width: 720px;
}

.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.hero-text {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* --------- BOTONES --------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    color 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #111;
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.75);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent-soft);
}

.btn.ghost:hover {
  background: rgba(199, 154, 74, 0.12);
}

.btn.full {
  width: 100%;
}

/* --------- SECCIONES --------- */
.section {
  padding: 3.5rem 7vw;
  background-color: var(--bg-main);
}

.section-soft {
  background-color: var(--bg-soft);
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.7rem;
  margin-bottom: 0.3rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.arte-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.bloque-texto {
  margin-bottom: 2.2rem;   /* 👈 AIRE ENTRE BLOQUES */
  line-height: 1.9;
  font-size: 1.05rem;
}

.bloque-link {
  margin-top: 3rem;
  font-weight: 500;
}
.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3.6rem;
}
.music-intro p {
  margin-bottom: 22px;
  line-height: 1.7;
}

.music-releases {
  margin-top: 40px;
}

.music-links {
  margin-top: 40px;
}

.music-links a {
  display: block;
  margin: 6px 0;
  color: #9ad7ff;
  text-decoration: none;
}

.music-links a:hover {
  text-decoration: underline;
}
/* ---- Ajuste específico para QUIÉNES SOMOS (modo columna única) ---- */
#about .section-grid {
  display: block;              /* deja de ser grilla, pasa a flujo normal */
}

.grid {
  display: grid;
  gap: 3.5rem; /* más aire entre las tarjetas */
}

#about .section-grid .card {
  margin-bottom: 3.8rem;       /* separa bien cada recuadro */
}

#about .section-grid .card:last-child {
  margin-bottom: 3.8rem;            /* sin margen extra en el último */
}

/* --------- TARJETAS --------- */
.card {
  background-color: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: #f7f7f7;
}

.card p + p {
  margin-top: 0.6rem;
}

.text-card {
  border-left: 2px solid var(--accent-soft);
}

.highlight {
  color: #f3e2c5;
}

.soon {
  color: var(--text-muted);
  font-style: italic;
}

/* --------- CONTACTO --------- */
.contact-grid {
  align-items: flex-start;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background-color: #181818;
  color: #f5f5f5;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);  /* usa tu color dorado */
  outline-offset: 3px;
  border-color: var(--accent);
  background-color: #1c1c1c;         /* leve contraste con el fondo */
}

.form-note {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------- FOOTER --------- */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 7vw 1.6rem;
  background-color: #151515;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-safecreative {
  position: absolute;
  bottom: 10px;
  left: 300px;
}

.footer-safecreative img {
  width: 120px;
  opacity: 0.85;
}

/* --------- RESPONSIVE --------- */
@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .main-nav ul {
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 2.8rem 6vw 2.5rem;
  }

  .section {
    padding: 2.6rem 6vw;
  }

  .intro-title {
    font-size: 1.9rem;
  }
}
/* --- Pie de página --- */
.site-footer {
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px solid #333;
  background-color: #0f0f0f;
}

.site-footer a {
  color: #c99a44;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffcc66;
}



/* =========================
   Layout coherente (todas las secciones)
   ========================= */
.section-content{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-header{
  margin-bottom: 22px;
}

.section-header h2{
  text-align: left;
  letter-spacing: 0.3px;
}

.section-header .subtitle{
  text-align: left;
  opacity: 0.75;
}

/* Bloques de texto: mismo ancho + aire */
.bloque-texto{
  max-width: 760px;
  margin: 18px auto;
  text-align: left;
  color: rgba(255,255,255,0.82);
}

.bloque-texto p{
  margin: 0 0 14px;
}

.bloque-texto ul,
.bloque-texto ol{
  margin: 10px 0 14px 20px;
  padding: 0;
}

/* Links visibles y clickeables */
.bloque-texto a,
.links-list a,
.section a{
  color: #6ea8ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bloque-texto a:hover,
.links-list a:hover,
.section a:hover{
  opacity: 0.9;
}

/* Si hay listas de enlaces, que no se estiren */
.links-list{
  max-width: 760px;
  margin: 16px auto 0;
}

/* Ajuste fino: arte (si existe su wrapper) */
.arte-section{
  max-width: 980px; /* mismo ancho que section-content */
  margin: 0 auto;
  padding: 0;
}

/* Responsive */
@media (max-width: 600px){
  .section-content{ padding: 0 18px; }
  .bloque-texto{ max-width: 100%; }
}
