/* =============================================
   VOTOS & VOCES — Main Stylesheet v3
   Elegant · Romantic · Modern
   ============================================= */

/* === CSS VARIABLES === */
:root {
  --gold: #C9A96E;
  --gold-light: #E2C98A;
  --gold-dark: #A8864A;
  --gold-pale: #F5EDD8;
  --ivory: #FAFAF7;
  --ivory-warm: #F7F4EF;
  --white: #FFFFFF;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --gray: #8A8A8A;
  --gray-light: #E8E4DC;
  --gray-lighter: #F2EEE8;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', -apple-system, sans-serif;

  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
  --shadow-sm: 0 2px 12px rgba(44,44,44,0.06);
  --shadow-md: 0 8px 32px rgba(44,44,44,0.10);
  --shadow-lg: 0 20px 60px rgba(44,44,44,0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 999px;

  --nav-height: 76px;
  --container-max: 1180px;
  --container-pad: 28px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: var(--font-sans); font-size: 0.95rem; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory-warm); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { font-size: 1rem; color: var(--charcoal-light); }
em { font-style: italic; color: var(--gold-dark); }

/* === SECTION BASE === */
.section { padding: 96px 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.light { color: var(--gold-light); }

/* Section header block — centered */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-label { display: block; }
.section-header .section-title { margin-bottom: 14px; }
.section-header .section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto;
}

.section-title { margin-bottom: 16px; }
.section-title-sm {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 620px;
  margin-bottom: 48px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-large { padding: 16px 36px; font-size: 0.95rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,169,110,0.35);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-pale);
  padding: 10px 20px;
  font-size: 0.82rem;
}
.btn-ghost:hover { background: var(--gold-pale); transform: translateY(-1px); }

/* =============================================
   NAVBAR — fixed, sticky on scroll
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(250,250,247,0.97);
  box-shadow: 0 2px 20px rgba(44,44,44,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 901;
}
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-text-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-text-fallback svg { flex-shrink: 0; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-menu ul {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-menu a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }
.nav-menu a.active { color: var(--gold); }
.nav-cta { font-size: 0.82rem !important; padding: 10px 20px !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 901;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,30,30,0.65) 0%,
    rgba(20,20,20,0.45) 50%,
    rgba(168,134,74,0.22) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  animation: fadeInUp 1s ease forwards;
}
.hero-logo {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}
.hero-logo-img {
  height: 96px;
  width: auto;
  filter: drop-shadow(0 0 24px rgba(201,169,110,0.5));
}
.hero-title {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 20px;
  font-weight: 300;
}
.hero-title em { color: var(--gold-light); font-style: italic; }
.hero-subtitle {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-note {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hero-note i { color: var(--gold-light); }

.hero-tagline {
  position: absolute;
  bottom: 72px;
  left: 0; right: 0;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: fadeIn 1.5s ease 0.5s forwards;
  opacity: 0;
}
.hero-tagline span {
  color: rgba(255,255,255,0.72);
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-style: italic;
  letter-spacing: 0.04em;
}
.hero-tagline strong { color: var(--gold-light); }

.hero-scroll-arrow {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  animation: bounce 2s ease infinite;
}

/* =============================================
   DEMO SECTION
   ============================================= */
.demo-section {
  background: var(--white);
  text-align: center;
}
.demo-section .section-header { margin-bottom: 40px; }

.demo-player-card {
  background: var(--ivory-warm);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 36px 40px;
  max-width: 680px;
  margin: 0 auto 48px;
  box-shadow: var(--shadow-sm);
}
.demo-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 48px;
  margin-bottom: 20px;
}
.wave-bar {
  width: 4px;
  background: linear-gradient(to top, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: waveAnim 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
.wave-bar:nth-child(odd) { animation-delay: 0.1s; }
.wave-bar:nth-child(3n) { animation-delay: 0.3s; }
.wave-bar:nth-child(4n) { animation-delay: 0.5s; }

.demo-player-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.demo-player-icon {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.demo-player-title {
  font-weight: 500;
  color: var(--charcoal);
  font-size: 0.95rem;
  margin-bottom: 2px;
  transition: color 0.2s;
}
.demo-player-sub { font-size: 0.78rem; color: var(--gray); }
.btn-play {
  margin-left: auto;
  width: 46px; height: 46px;
  background: var(--gold);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.btn-play:hover { background: var(--gold-dark); transform: scale(1.08); }
.btn-play.is-playing { background: var(--gold-dark); }
.demo-player-note {
  font-size: 0.78rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: left;
}
.demo-player-note i { color: var(--gold); flex-shrink: 0; }

.demo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.demo-card {
  background: var(--ivory-warm);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: all var(--transition);
}
.demo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.demo-card-icon {
  width: 42px; height: 42px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.demo-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.demo-card p { font-size: 0.88rem; font-style: italic; color: var(--gray); margin-bottom: 20px; line-height: 1.6; }

/* =============================================
   QUÉ ES — GEO/LLMO band
   ============================================= */
.about-brand-section {
  background: var(--gold-pale);
  padding: 32px 0;
  border-top: 1px solid rgba(201,169,110,0.25);
  border-bottom: 1px solid rgba(201,169,110,0.25);
}
.about-brand-inner {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.about-brand-icon {
  width: 46px; height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 6px;
}
.about-brand-text .section-label { margin-bottom: 4px; }
.about-brand-text .section-title-sm { font-size: 1.25rem; margin-bottom: 8px; }
.about-brand-text p { font-size: 0.88rem; margin-bottom: 6px; line-height: 1.7; }
.about-brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}
.about-brand-tags li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: var(--radius-full);
  padding: 3px 12px;
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 500;
}
.about-brand-tags li i { font-size: 0.65rem; color: var(--gold); }

/* =============================================
   EMOTIONAL SECTION
   ============================================= */
.emotional-section { background: var(--ivory-warm); }
.emotional-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.emotional-body { margin-bottom: 16px; font-size: 1.02rem; line-height: 1.8; }
.emotional-body:last-of-type { margin-bottom: 28px; }
.emotional-image { position: relative; }
.emotional-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.emotional-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.emotional-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}
.emotional-badge i { color: var(--gold); }

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-section { background: var(--white); text-align: center; }
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 36px;
}
.how-step {
  flex: 1;
  text-align: center;
  padding: 40px 28px;
}
.how-step-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold-pale);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 12px;
}
.how-step-icon {
  width: 62px; height: 62px;
  background: var(--gold-pale);
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--gold);
  font-size: 1.3rem;
  transition: all var(--transition);
}
.how-step:hover .how-step-icon { background: var(--gold); color: var(--white); transform: scale(1.1); }
.how-step h3 { margin-bottom: 10px; }
.how-step p { font-size: 0.9rem; color: var(--gray); max-width: 260px; margin: 0 auto; }
.how-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 96px;
  color: var(--gold-light);
  flex-shrink: 0;
  width: 44px;
}
.connector-arrow { font-size: 1.1rem; }

/* =============================================
   PLANS
   ============================================= */
.plans-section { background: var(--ivory-warm); text-align: center; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 4px;
}
.plan-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: left;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-featured {
  border: 2px solid var(--gold);
  background: var(--ivory);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}
.plan-featured:hover { transform: scale(1.03) translateY(-6px); }
.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  padding: 5px 18px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.plan-icon {
  width: 50px; height: 50px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.plan-featured .plan-icon { background: var(--gold); color: var(--white); }
.plan-name { font-size: 1.25rem; margin-bottom: 6px; }
.plan-price { font-family: var(--font-sans); font-size: 0.95rem; color: var(--gray); margin-bottom: 8px; }
.plan-price strong { font-family: var(--font-serif); font-size: 1.7rem; color: var(--charcoal); font-weight: 500; }
.plan-desc { font-size: 0.85rem; color: var(--gray); margin-bottom: 20px; border-bottom: 1px solid var(--gray-lighter); padding-bottom: 18px; }
.plan-features { flex: 1; margin-bottom: 24px; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--charcoal-light);
  padding: 5px 0;
  border-bottom: 1px solid var(--gray-lighter);
}
.plan-features li:last-child { border: none; }
.plan-features li i { color: var(--gold); margin-top: 4px; font-size: 0.72rem; flex-shrink: 0; }
.plan-btn { width: 100%; justify-content: center; }
.plans-note {
  margin-top: 32px;
  font-size: 0.82rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.plans-note i { color: var(--gold); }

/* =============================================
   GALLERY — Clean 3-col uniform grid
   ============================================= */
.gallery-section { background: var(--white); text-align: center; }
.gallery-section .container { margin-bottom: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 0;
  padding: 0 var(--container-pad);
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  background: var(--gray-lighter);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(30,30,30,0.72), transparent);
  color: var(--white);
  font-size: 0.78rem;
  padding: 28px 14px 12px;
  opacity: 0;
  transition: opacity var(--transition);
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}
.gallery-item:hover figcaption { opacity: 1; }

/* Podcast mockup row */
.podcast-mockup {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 0;
}
.mockup-phone {
  width: 188px; height: 380px;
  background: var(--charcoal);
  border-radius: 30px;
  padding: 14px;
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(201,169,110,0.18);
  flex-shrink: 0;
}
.mockup-screen {
  background: #1A1A1A;
  border-radius: 20px;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-app { padding: 18px; text-align: center; width: 100%; }
.mockup-cover {
  width: 92px; height: 92px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 14px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-cover-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.mockup-cover-inner i { font-size: 1.5rem; }
.mockup-ep-title { color: var(--white); font-size: 0.68rem; font-weight: 500; margin-bottom: 2px; }
.mockup-ep-sub { color: rgba(255,255,255,0.45); font-size: 0.6rem; margin-bottom: 10px; }
.mockup-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 22px;
  margin-bottom: 12px;
}
.mockup-waveform div {
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  animation: waveAnim 1.2s ease-in-out infinite;
}
.mockup-waveform div:nth-child(1) { height: 40%; }
.mockup-waveform div:nth-child(2) { height: 80%; }
.mockup-waveform div:nth-child(3) { height: 60%; animation-delay: 0.1s; }
.mockup-waveform div:nth-child(4) { height: 100%; animation-delay: 0.2s; }
.mockup-waveform div:nth-child(5) { height: 70%; animation-delay: 0.15s; }
.mockup-waveform div:nth-child(6) { height: 50%; animation-delay: 0.25s; }
.mockup-waveform div:nth-child(7) { height: 90%; animation-delay: 0.05s; }
.mockup-waveform div:nth-child(8) { height: 65%; animation-delay: 0.3s; }
.mockup-waveform div:nth-child(9) { height: 45%; animation-delay: 0.1s; }
.mockup-waveform div:nth-child(10) { height: 75%; animation-delay: 0.2s; }
.mockup-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
.mockup-controls .fa-circle-play { color: var(--gold); font-size: 1.5rem; }
.mockup-text h3 { font-size: 1.7rem; margin-bottom: 14px; }
.mockup-text p { margin-bottom: 26px; line-height: 1.8; }

/* =============================================
   PREGUNTAS QUE HACEMOS
   ============================================= */
.questions-section { background: var(--ivory-warm); text-align: center; }
.questions-section .section-header { margin-bottom: 40px; }
.questions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 44px;
}
.question-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: left;
  transition: all var(--transition);
}
.question-card:hover { border-color: var(--gold-light); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.question-card i { color: var(--gold-pale); font-size: 1.3rem; margin-bottom: 10px; display: block; }
.question-card p { font-family: var(--font-serif); font-size: 0.98rem; color: var(--charcoal); font-style: italic; line-height: 1.5; }
.questions-cta p { font-size: 1rem; color: var(--gray); margin-bottom: 22px; }

/* =============================================
   COMPARATIVA
   ============================================= */
.compare-section { background: var(--white); text-align: center; }
.compare-section .section-header { margin-bottom: 0; }
.compare-table-wrap { margin-top: 44px; overflow-x: auto; border-radius: var(--radius); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  text-align: left;
  min-width: 560px;
}
.compare-table th {
  background: var(--ivory-warm);
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray);
  border-bottom: 2px solid var(--gray-light);
}
.compare-table th.compare-highlight { color: var(--gold); text-align: center; }
.compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-lighter);
  color: var(--charcoal-light);
  vertical-align: middle;
}
.compare-table td:first-child { font-weight: 500; color: var(--charcoal); }
.compare-table td i { color: var(--gold); font-size: 0.85rem; margin-right: 5px; }
.compare-check { text-align: center; }
.compare-check i { font-size: 0.95rem; }
.text-muted { color: var(--gray-light); }
.compare-winner { background: linear-gradient(90deg, var(--gold-pale) 0%, var(--ivory-warm) 100%); }
.compare-winner td { font-weight: 500; color: var(--charcoal); border-bottom: none; }
.compare-winner .compare-check i { color: var(--gold); font-size: 1.1rem; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--ivory-warm); text-align: center; }
.testimonials-section .section-header { margin-bottom: 48px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
  margin-top: 8px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-center { border: 2px solid var(--gold-light); background: var(--ivory); }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 22px;
}
.testimonial-card footer { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px;
  background: var(--gold-pale);
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 500;
  flex-shrink: 0;
}
.testimonial-card footer strong { display: block; font-family: var(--font-sans); font-size: 0.88rem; font-weight: 500; color: var(--charcoal); }
.testimonial-card footer span { font-size: 0.76rem; color: var(--gray); }
.testimonials-note { margin-top: 28px; font-size: 0.76rem; color: var(--gray); font-style: italic; }

/* =============================================
   ALIANZAS
   ============================================= */
.partners-section { background: var(--charcoal); }
.partners-inner { text-align: center; padding: 16px 0; }
.partners-icon {
  width: 68px; height: 68px;
  background: rgba(201,169,110,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--gold);
  font-size: 1.5rem;
}
.partners-inner .section-label { color: var(--gold); display: block; }
.partners-inner .section-title-sm { color: var(--white); margin-bottom: 14px; }
.partners-inner p { color: rgba(255,255,255,0.68); max-width: 540px; margin: 0 auto 28px; font-size: 0.95rem; }

/* =============================================
   FAQ
   ============================================= */
.faq-section { background: var(--white); }
.faq-section .section-label,
.faq-section .section-title { text-align: center; }
.faq-section > .container > .section-label { display: block; }
.faq-list { max-width: 740px; margin: 44px auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--charcoal);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 18px; font-size: 0.9rem; color: var(--gray); line-height: 1.8; }

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; overflow: hidden; }
.cta-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,30,30,0.80), rgba(168,134,74,0.30));
}
.cta-content { position: relative; z-index: 2; padding: 80px 24px; }
.cta-title { color: var(--white); text-shadow: 0 2px 20px rgba(0,0,0,0.3); margin-bottom: 18px; }
.cta-title em { color: var(--gold-light); }
.cta-subtitle { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 540px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   CONTACT / FORM
   ============================================= */
.contact-section { background: var(--ivory-warm); }
.contact-section .section-label,
.contact-section .section-title { text-align: center; }
.contact-section > .container > .section-label { display: block; }
.contact-section .section-subtitle { margin: 0 auto 44px; text-align: center; max-width: 580px; display: block; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 44px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-row .form-group { margin-bottom: 0; }
.form-group label { font-size: 0.8rem; font-weight: 500; color: var(--charcoal); letter-spacing: 0.02em; }
.required { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  margin-top: 18px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-success i { color: var(--gold); font-size: 1.1rem; }
.form-success p { color: var(--charcoal); font-size: 0.88rem; margin: 0; }

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.contact-info-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.contact-info-card > p { font-size: 0.88rem; color: var(--gray); margin-bottom: 18px; }
.contact-details { margin-top: 18px; border-top: 1px solid var(--gray-lighter); padding-top: 14px; }
.contact-details p { font-size: 0.83rem; color: var(--charcoal-light); margin-bottom: 7px; display: flex; align-items: center; gap: 7px; }
.contact-details i { color: var(--gold); width: 14px; }
.contact-quote { background: var(--charcoal); border-radius: var(--radius); padding: 26px; text-align: center; }
.contact-quote i { color: var(--gold); font-size: 1.4rem; margin-bottom: 10px; display: block; }
.contact-quote blockquote { font-family: var(--font-serif); font-size: 0.92rem; font-style: italic; color: rgba(255,255,255,0.82); line-height: 1.6; margin-bottom: 10px; }
.contact-quote cite { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.08em; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--charcoal); padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { margin-bottom: 8px; }
.footer-logo img { height: 52px; width: auto; margin-bottom: 6px; filter: brightness(0) invert(1); opacity: 0.88; }
.footer-logo-text { font-family: var(--font-serif); font-size: 1.35rem; color: var(--white); display: block; margin-bottom: 6px; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.45); font-style: italic; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-nav ul li { margin-bottom: 7px; }
.footer-nav a { color: rgba(255,255,255,0.55); font-size: 0.86rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--gold-light); }
.footer-contact p { color: rgba(255,255,255,0.55); font-size: 0.83rem; margin-bottom: 7px; display: flex; align-items: center; gap: 7px; }
.footer-contact i { color: var(--gold); width: 14px; }
.footer-bottom { padding: 18px 0; }
.footer-legal { font-size: 0.73rem; color: rgba(255,255,255,0.3); text-align: center; margin-bottom: 5px; max-width: 680px; margin-left: auto; margin-right: auto; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.22); text-align: center; }

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.wa-float {
  display: none;
  position: fixed;
  bottom: 18px;
  left: 16px; right: 16px;
  z-index: 800;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 14px 22px;
  font-weight: 600;
  font-size: 0.88rem;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.wa-float i { font-size: 1.15rem; }
.wa-float:hover { background: #20BA5A; transform: translateY(-2px); }

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(44,44,44,0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.94);
  transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 30px; height: 30px;
  background: var(--gray-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--gold); color: var(--white); }
.modal-icon { width: 60px; height: 60px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; color: var(--gold); font-size: 1.3rem; }
.modal-box h3 { margin-bottom: 10px; font-size: 1.3rem; }
.modal-box p { font-size: 0.88rem; color: var(--gray); margin-bottom: 22px; }
.modal-waveform { display: flex; align-items: center; justify-content: center; gap: 4px; height: 38px; margin-bottom: 22px; }
.modal-waveform div { width: 5px; background: linear-gradient(to top, var(--gold), var(--gold-light)); border-radius: 3px; animation: waveAnim 1.2s ease-in-out infinite; }
.modal-waveform div:nth-child(1)  { height: 30%; }
.modal-waveform div:nth-child(2)  { height: 70%; animation-delay: 0.1s; }
.modal-waveform div:nth-child(3)  { height: 50%; animation-delay: 0.2s; }
.modal-waveform div:nth-child(4)  { height: 90%; animation-delay: 0.3s; }
.modal-waveform div:nth-child(5)  { height: 60%; animation-delay: 0.15s; }
.modal-waveform div:nth-child(6)  { height: 100%; animation-delay: 0.05s; }
.modal-waveform div:nth-child(7)  { height: 75%; animation-delay: 0.25s; }
.modal-waveform div:nth-child(8)  { height: 45%; animation-delay: 0.35s; }
.modal-waveform div:nth-child(9)  { height: 80%; animation-delay: 0.1s; }
.modal-waveform div:nth-child(10) { height: 55%; animation-delay: 0.2s; }
.modal-waveform div:nth-child(11) { height: 65%; animation-delay: 0.3s; }
.modal-waveform div:nth-child(12) { height: 40%; animation-delay: 0.15s; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes waveAnim {
  0%, 100% { transform: scaleY(1); }
  50%       { transform: scaleY(0.4); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {

  /* Nav — shrink gaps */
  .nav-menu ul { gap: 16px; }
  .nav-menu a { font-size: 0.8rem; }

  /* Plans — single column */
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-6px); }

  /* How steps — vertical */
  .how-steps { flex-direction: column; align-items: center; gap: 0; }
  .how-connector { display: none; }
  .how-step { padding: 28px 20px; max-width: 400px; width: 100%; }

  /* Gallery 2-col */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Questions 3-col */
  .questions-grid { grid-template-columns: repeat(3, 1fr); }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  /* Podcast mockup */
  .podcast-mockup { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .mockup-text .btn { margin: 0 auto; }

  /* Emotional */
  .emotional-inner { grid-template-columns: 1fr; gap: 40px; }
  .emotional-image { order: -1; }
  .emotional-img-wrap img { height: 340px; }

  /* Demo cards */
  .demo-cards { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --container-pad: 18px;
  }
  .section { padding: 64px 0; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 100vw);
    height: 100vh;
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--nav-height) + 28px) 28px 28px;
    box-shadow: -4px 0 32px rgba(44,44,44,0.10);
    transition: right var(--transition);
    gap: 0;
    z-index: 900;
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .nav-menu ul { flex-direction: column; gap: 0; width: 100%; }
  .nav-menu ul li { border-bottom: 1px solid var(--gray-lighter); }
  .nav-menu a { display: block; padding: 13px 0; font-size: 0.95rem; }
  .nav-cta { margin-top: 20px; align-self: stretch; text-align: center; justify-content: center; }

  /* Hero */
  .hero-content { padding: 100px 18px 80px; }
  .hero-logo-img { height: 76px; }
  .hero-tagline { display: none; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { justify-content: center; }

  /* WhatsApp float — visible */
  .wa-float { display: flex; }
  .footer { padding-bottom: 80px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 18px; }

  /* Questions */
  .questions-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* About brand */
  .about-brand-inner { flex-direction: column; gap: 14px; }
  .about-brand-icon { width: 40px; height: 40px; font-size: 0.9rem; margin-top: 0; }
  .about-brand-tags { gap: 6px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 26px 18px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }

  /* Compare table */
  .compare-table-wrap { border-radius: var(--radius-sm); }

  /* Podcast mockup */
  .podcast-mockup { padding: 48px 0 0; }
  .mockup-phone { width: 150px; height: 300px; }

  /* Plans */
  .plans-grid { max-width: 100%; }

  /* Demo player */
  .demo-player-card { padding: 22px 18px; }

  /* CTA btns */
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { justify-content: center; }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .questions-grid { grid-template-columns: 1fr; }
  .demo-player-info { flex-wrap: wrap; }
  .how-step { padding: 22px 14px; }
  .plans-grid { max-width: 100%; }
}
