/* ============================================================
   SUBVENCIONADA.COM — Hoja de estilos de marca
   Basada en el manual de marca Danza Subvencionada.
   Paleta: 9 colores. Tipos: Playfair Display + Inter.
   ============================================================ */

:root {
  --bg: #0D0A0B;
  --bg-alt: #1A1410;
  --surface: #221C17;
  --bg-deep: #0A0808;
  --gold: #C9932A;
  --gold-bright: #E8B84B;
  --text: #F2EDE8;
  --text-muted: #A89880;
  --text-emphasis: #D4B896;
  --border: #2E2419;
}

/* ============== RESET & BASE ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============== SCROLLBAR ============== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-bright); }

/* ============== UTILITIES ============== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-block;
}
.section-divider {
  width: 120px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}
.section-divider.small { width: 80px; }
.section-divider.solid { width: 60px; height: 2px; background: var(--gold); }
.section-divider.solid-small { width: 48px; height: 2px; background: var(--gold); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: 6px;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: linear-gradient(90deg, #C9932A 0%, #E8B84B 100%);
  color: var(--bg);
}
.btn-primary:hover {
  background: linear-gradient(90deg, #E8B84B 0%, #C9932A 100%);
  box-shadow: 0 0 28px rgba(232, 184, 75, 0.5);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(201, 147, 42, 0.3);
}
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-md { padding: 14px 28px; font-size: 14px; }
.btn-lg { padding: 20px 48px; font-size: 16px; }
.btn-block { display: flex; width: 100%; padding: 20px; border-radius: 8px; }
.btn-glow { box-shadow: 0 0 20px rgba(232, 184, 75, 0.3); }

/* ============== NAVBAR ============== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(13, 10, 11, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-text-main {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  line-height: 1.1;
}
.logo-text-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a:not(.btn) {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.25s ease;
}
.nav-menu a:not(.btn):hover,
.nav-menu a:not(.btn).active { color: var(--gold-bright); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; color: var(--gold); padding: 8px; }

/* Menú móvil desplegable */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(13, 10, 11, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 24px 20px 32px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
}
.nav-mobile.open { display: flex; }
@media (min-width: 769px) { .nav-mobile { display: none !important; } }
.nav-mobile a:not(.btn) {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--text-muted);
}
.nav-mobile a:not(.btn):hover { color: var(--gold-bright); }
.nav-mobile .btn { width: 100%; }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 100px;
  overflow: hidden;
}
.hero.hero-page { min-height: 72vh; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 147, 42, 0.15) 0%, transparent 70%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 10, 11, 0.85) 0%, rgba(13, 10, 11, 0.95) 100%);
}
.hero-content {
  max-width: 800px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}
.badge {
  display: inline-block;
  background: var(--bg-alt);
  border: 1px solid var(--gold);
  border-radius: 100px;
  padding: 8px 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gold-bright);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 58px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
}
.hero h1 .highlight {
  color: var(--gold-bright);
  text-shadow: 0 0 30px rgba(232, 184, 75, 0.4);
}
.hero-lead {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.8;
  color: var(--text-emphasis);
  max-width: 600px;
  margin: 0 auto 40px;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-proof { margin-top: 40px; }
.hero-proof-text {
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  animation: bounce 2s infinite;
  z-index: 3;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============== SECTIONS ============== */
section { position: relative; }
.section-alt { background: var(--bg-alt); padding: 100px 48px; }
.section-base { background: var(--bg); padding: 100px 48px; position: relative; }
.section-base.with-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 147, 42, 0.08) 0%, transparent 60%);
  z-index: 0;
}
.section-narrow {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.section-wide {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.3;
  color: var(--text);
  margin: 16px 0 24px;
}
h2 .highlight { color: var(--gold-bright); }
.section-lead {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 56px;
}
.section-lead.large { font-size: 19px; color: var(--text-emphasis); max-width: 640px; }

/* ============== PAIN CARDS ============== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
  text-align: left;
}
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: inset 0 0 0 1px rgba(201, 147, 42, 0.05);
  transition: all 0.25s ease-in-out;
}
.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 147, 42, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(201, 147, 42, 0.1);
}
.pain-card-icon { width: 40px; height: 40px; color: var(--gold); margin-bottom: 16px; }
.pain-card h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
}
.pain-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  color: var(--text-emphasis);
  margin: 0 auto 32px;
  max-width: 600px;
}

/* ============== IMAGEN EN SECCIÓN ============== */
.solution-image-wrap {
  max-width: 800px;
  margin: 56px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(201, 147, 42, 0.25);
  position: relative;
  border: 1px solid rgba(201, 147, 42, 0.2);
}
.solution-image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.solution-image-wrap:hover img { transform: scale(1.02); }
.solution-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--bg) 100%);
  pointer-events: none;
}

/* ============== BENEFICIOS ============== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
  max-width: 800px;
  margin: 0 auto 56px;
  text-align: left;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.benefit-item:last-child,
.benefit-item:nth-last-child(2) { border-bottom: none; }
.benefit-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 147, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.benefit-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}
.benefit-text strong { color: var(--text); font-weight: 500; }
.cta-helper {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}

/* ============== BIO ============== */
.bio-grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.bio-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201, 147, 42, 0.3);
  box-shadow: 0 0 40px rgba(201, 147, 42, 0.2);
}
.bio-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bio-image-wrap:hover img { transform: scale(1.02); }
.bio-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 10, 11, 0.9) 100%);
  pointer-events: none;
}
.bio-image-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  border-radius: 6px;
  padding: 8px 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  z-index: 2;
  white-space: nowrap;
}
.bio-content { text-align: left; }
.bio-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--gold-bright);
  margin: 16px 0;
  line-height: 1.1;
}
.bio-divider { margin-bottom: 24px; }
.bio-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.bio-text.emphasis { color: var(--text-emphasis); }
.bio-achievements { list-style: none; margin: 24px 0 32px; }
.bio-achievements li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.bio-achievements .check-icon { flex-shrink: 0; color: var(--gold); margin-top: 3px; }

/* ============== ESCALERA / CAMINO ============== */
.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 56px 0;
  text-align: left;
  counter-reset: path;
}
.path-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: inset 0 0 0 1px rgba(201, 147, 42, 0.05);
  transition: all 0.25s ease-in-out;
  position: relative;
}
.path-step:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 147, 42, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.path-step-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.55;
  margin-bottom: 16px;
}
.path-step h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
}
.path-step .path-tag {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.path-step p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============== CATÁLOGO DE PRODUCTOS ============== */
.catalog-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--text);
  margin: 64px 0 8px;
  text-align: left;
}
.catalog-heading:first-of-type { margin-top: 40px; }
.catalog-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  text-align: left;
  margin-bottom: 24px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.product-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; }
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: inset 0 0 0 1px rgba(201, 147, 42, 0.05);
  transition: all 0.25s ease-in-out;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 147, 42, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.product-card.featured {
  border: 1px solid var(--gold);
  box-shadow: 0 0 60px rgba(201, 147, 42, 0.2);
}
.product-card-tag {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.product-card h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.product-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.product-card .product-meta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.product-card-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.product-links { display: flex; flex-direction: column; gap: 6px; }
.product-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--gold);
  transition: color 0.25s ease;
}
.product-link:hover { color: var(--gold-bright); }

/* ============== PRECIOS ============== */
.price-line { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price-old {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-now {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--gold-bright);
}
.price-now.large { font-size: 42px; }
.price-note {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============== OFFER CARD ============== */
.final-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 147, 42, 0.12) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.offer-card {
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 48px;
  max-width: 500px;
  margin: 48px auto 32px;
  box-shadow: 0 0 60px rgba(201, 147, 42, 0.2);
  text-align: center;
}
.offer-card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--text);
  margin-bottom: 24px;
}
.offer-list { list-style: none; text-align: left; margin-bottom: 32px; }
.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}
.offer-list .check-icon { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.offer-price { margin-bottom: 28px; }
.offer-price .price-line { justify-content: center; }
.offer-secondary {
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
}
.offer-secondary a {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.25s ease;
}
.offer-secondary a:hover { color: var(--gold-bright); }
.final-cta-footnote {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  margin-top: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============== TEMARIO / MÓDULOS ============== */
.syllabus {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: left;
}
.syllabus-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.syllabus-item:last-child { border-bottom: none; }
.syllabus-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: var(--gold);
  opacity: 0.55;
  flex-shrink: 0;
  width: 44px;
}
.syllabus-item h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 6px;
}
.syllabus-item p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============== GARANTÍA ============== */
.guarantee {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}
.guarantee-icon { flex-shrink: 0; width: 40px; height: 40px; color: var(--gold); }
.guarantee h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 6px;
}
.guarantee p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============== FAQ ============== */
.faq { max-width: 760px; margin: 0 auto; text-align: left; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.faq details:last-child { border-bottom: none; }
.faq summary {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  padding: 20px 36px 20px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.25s ease;
}
.faq summary:hover { color: var(--gold-bright); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--gold);
  transition: transform 0.25s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq-answer {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 0 0 24px;
  max-width: 680px;
}
.faq .faq-answer a { color: var(--gold); text-decoration: underline; }
.faq .faq-answer a:hover { color: var(--gold-bright); }

/* ============== COMPARATIVA ============== */
.compare-wrap { overflow-x: auto; margin: 0 auto 40px; max-width: 900px; }
.compare {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 640px;
}
.compare th, .compare td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  vertical-align: top;
}
.compare th {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
}
.compare th.highlight-col, .compare td.highlight-col { background: rgba(201, 147, 42, 0.07); }
.compare .check-icon { color: var(--gold); }
.compare .compare-no { color: var(--border); }

/* ============== TESTIMONIOS ============== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 56px 0;
  text-align: left;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
/* Los testimonios están grabados en vertical con el móvil (400x848 y 480x848).
   A ancho completo cada uno pasaría de 900px de alto y se comería la sección,
   así que se limita la altura y se centran dentro de su tarjeta. */
.testimonial video {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 460px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: var(--bg-deep);
}
.testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-emphasis);
  margin-bottom: 16px;
}
.testimonial cite {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
}
.testimonial cite strong { color: var(--text); font-weight: 500; display: block; }

/* ============== FOOTER ============== */
footer {
  background: var(--bg-deep);
  padding: 56px 48px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-col-1 .logo { margin-bottom: 16px; }
.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); transition: color 0.25s ease; }
.footer-bottom a:hover { color: var(--gold); }

/* ============== PARTICLES ============== */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.particle {
  position: absolute;
  background: rgba(232, 184, 75, 0.15);
  border-radius: 50%;
  animation: twinkle 6s infinite ease-in-out;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.5; }
}

/* ============== REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .section-alt, .section-base { padding: 80px 32px; }
  .hero { padding: 100px 32px 80px; }
  .bio-grid { gap: 40px; }
  h2 { font-size: 36px; }
  .hero h1 { font-size: 48px; }
  .nav-menu { gap: 18px; }
  /* Con seis elementos (4 enlaces + Entrar + CTA) la barra se estrecha:
     los botones nunca deben partir en dos líneas, porque .navbar tiene altura fija */
  .nav-menu .btn { white-space: nowrap; padding: 9px 14px; font-size: 12px; }
  .nav-menu a:not(.btn) { font-size: 13px; }
  .path-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-alt, .section-base { padding: 64px 20px; }
  .hero { padding: 96px 20px 64px; }

  .nav-menu { display: none; }
  .nav-toggle { display: inline-flex; }
  .logo-text-wrap { flex-direction: row; align-items: baseline; gap: 6px; }
  .logo-text-main { font-size: 14px; }
  .logo-text-sub { font-size: 10px; margin-top: 0; }
  /* Lockup largo (SUBVENCIONADA · FINANCIACIÓN CULTURAL): apilado en móvil */
  .logo-stack .logo-text-wrap { flex-direction: column; gap: 0; align-items: flex-start; }
  .logo-stack .logo-text-main { font-size: 13px; }
  .logo-stack .logo-text-sub { font-size: 8px; letter-spacing: 0.15em; margin-top: 2px; }

  .hero h1 { font-size: 36px; }
  .hero-lead { font-size: 16px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }

  h2 { font-size: 28px; }
  .section-lead, .section-lead.large { font-size: 16px; }

  .problem-grid { grid-template-columns: 1fr; gap: 16px; }
  .pain-card { padding: 24px; }
  .path-grid { grid-template-columns: 1fr; gap: 16px; }
  .path-step { padding: 24px; }
  .product-grid, .product-grid.two { grid-template-columns: 1fr; gap: 16px; }
  .product-card { padding: 24px; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 16px; }

  .benefits-grid { grid-template-columns: 1fr; gap: 0; }
  .benefit-item { border-bottom: 1px solid var(--border) !important; }
  .benefit-item:last-child { border-bottom: none !important; }

  .bio-grid { grid-template-columns: 1fr; gap: 32px; }
  .bio-image-wrap { max-width: 360px; margin: 0 auto; }
  .bio-name { font-size: 28px; }

  .offer-card { padding: 32px 24px; }
  .syllabus-item { gap: 14px; padding: 20px 0; }
  .guarantee { flex-direction: column; padding: 24px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-col-1 .logo { justify-content: center; margin: 0 auto 16px; }
  .footer-links { align-items: center; }
  .footer-bottom { justify-content: center; text-align: center; }

  .quote { font-size: 18px; }
  .btn { padding: 16px 28px; font-size: 14px; }
  .btn-lg { padding: 18px 36px; }
  .price-now.large { font-size: 34px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .bio-name { font-size: 24px; }
}


/* Botón flotante de WhatsApp — solo en móvil, en las páginas de venta.
   En este sector la venta se cierra en el chat: el botón acorta el camino. */
.wa-float {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  padding: 13px 20px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,.45), 0 0 20px rgba(201,147,42,.35);
}
.wa-float:hover { background: var(--gold-bright); color: var(--bg); }
@media (max-width: 768px) {
  .wa-float { display: inline-block; }
}
