/* =============================================
   VOTOS & VOCES — Main Stylesheet
   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: 80px;
}

/* === 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: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === 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.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.light { color: var(--gold-light); }
.section-title {
  margin-bottom: 16px;
}
.section-title-sm {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  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
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(250,250,247,0.97);
  box-shadow: 0 2px 20px rgba(44,44,44,0.08);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.logo-text-fallback {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--charcoal);
}
.logo-amp { color: var(--gold); }

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 1001;
}
.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; }
.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;
  padding-top: var(--nav-height);
}
.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(44,44,44,0.62) 0%,
    rgba(20,20,20,0.45) 50%,
    rgba(168,134,74,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
  max-width: 860px;
  margin: 0 auto;
  animation: fadeInUp 1s ease forwards;
}
.hero-logo {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}
.hero-logo-img {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(201,169,110,0.5));
}
.hero-logo-svg {
  align-items: center;
  justify-content: center;
}
.logo-svg-inline { width: 100px; height: 100px; }

.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: 600px;
  margin: 0 auto 36px;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 16px;
  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.7);
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-style: italic;
  letter-spacing: 0.05em;
}
.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-player-card {
  background: var(--ivory-warm);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 36px 40px;
  max-width: 700px;
  margin: 0 auto 48px;
  box-shadow: var(--shadow-sm);
}
.demo-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 50px;
  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: 16px;
  margin-bottom: 16px;
}
.demo-player-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.demo-player-title {
  font-weight: 500;
  color: var(--charcoal);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.demo-player-sub {
  font-size: 0.8rem;
  color: var(--gray);
}
.btn-play {
  margin-left: auto;
  width: 48px; height: 48px;
  background: var(--gold);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  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);
}
.demo-player-note {
  font-size: 0.78rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}
.demo-player-note i { color: var(--gold); }

.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: 32px 28px;
  transition: all var(--transition);
}
.demo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.demo-card-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
}
.demo-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.demo-card p {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ============================================
   EMOTIONAL SECTION
   ============================================ */
.emotional-section {
  background: var(--ivory-warm);
}
.emotional-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.emotional-body {
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.8;
}
.emotional-body:last-of-type { margin-bottom: 32px; }
.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: 500px;
  object-fit: cover;
}
.emotional-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  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: 64px;
}
.how-step {
  flex: 1;
  text-align: center;
  padding: 40px 32px;
  position: relative;
}
.how-step-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold-pale);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 16px;
}
.how-step-icon {
  width: 64px; height: 64px;
  background: var(--gold-pale);
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-size: 1.4rem;
  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: 12px; }
.how-step p { font-size: 0.92rem; color: var(--gray); }

.how-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  color: var(--gold-light);
  flex-shrink: 0;
  width: 48px;
}
.connector-arrow { font-size: 1.2rem; }

/* ============================================
   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: 16px;
}
.plan-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 40px 32px;
  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: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.plan-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.plan-featured .plan-icon {
  background: var(--gold);
  color: var(--white);
}
.plan-name {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.plan-price {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 8px;
}
.plan-price strong {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--charcoal);
  font-weight: 500;
}
.plan-desc {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-lighter);
  padding-bottom: 20px;
}
.plan-features {
  flex: 1;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--charcoal-light);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-lighter);
}
.plan-features li:last-child { border: none; }
.plan-features li i { color: var(--gold); margin-top: 3px; font-size: 0.78rem; }
.plan-btn { width: 100%; justify-content: center; }

.plans-note {
  margin-top: 32px;
  font-size: 0.83rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.plans-note i { color: var(--gold); }

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  background: var(--white);
  text-align: center;
  padding-bottom: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 4px;
  margin-top: 48px;
  overflow: hidden;
}
.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-item-large {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(44,44,44,0.75), transparent);
  color: var(--white);
  font-size: 0.8rem;
  padding: 20px 16px 12px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover figcaption { opacity: 1; }

/* Podcast Mockup */
.podcast-mockup {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.mockup-phone {
  width: 200px;
  height: 400px;
  background: var(--charcoal);
  border-radius: 32px;
  padding: 16px;
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(201,169,110,0.2);
  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: 20px;
  text-align: center;
  width: 100%;
}
.mockup-cover {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 16px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-cover-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.mockup-cover-inner i { font-size: 1.6rem; }
.mockup-ep-title {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  margin-bottom: 2px;
}
.mockup-ep-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  margin-bottom: 12px;
}
.mockup-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 24px;
  margin-bottom: 14px;
}
.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: 16px;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}
.mockup-controls .fa-circle-play { color: var(--gold); font-size: 1.6rem; }

.mockup-text h3 { font-size: 1.8rem; margin-bottom: 16px; }
.mockup-text p { margin-bottom: 28px; line-height: 1.8; }

/* ============================================
   PREGUNTAS QUE HACEMOS
   ============================================ */
.questions-section {
  background: var(--ivory-warm);
  text-align: center;
}
.questions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.question-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 22px;
  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.4rem;
  margin-bottom: 12px;
  display: block;
}
.question-card p {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--charcoal);
  font-style: italic;
  line-height: 1.5;
}
.questions-cta p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 24px;
}

/* ============================================
   COMPARATIVA
   ============================================ */
.compare-section {
  background: var(--white);
  text-align: center;
}
.compare-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  text-align: left;
}
.compare-table th {
  background: var(--ivory-warm);
  padding: 16px 20px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.8rem;
  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: 16px 20px;
  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);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.compare-table td i { color: var(--gold); font-size: 0.9rem; }
.compare-check { text-align: center; }
.compare-check i { font-size: 1rem; }
.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.2rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--ivory-warm);
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-top: 16px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 36px 32px;
  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.9rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  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.85rem;
  color: var(--gold-dark);
  font-weight: 500;
  flex-shrink: 0;
}
.testimonial-card footer strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
}
.testimonial-card footer span {
  font-size: 0.78rem;
  color: var(--gray);
}
.testimonials-note {
  margin-top: 32px;
  font-size: 0.78rem;
  color: var(--gray);
  font-style: italic;
}

/* ============================================
   ALIANZAS
   ============================================ */
.partners-section {
  background: var(--charcoal);
}
.partners-inner {
  text-align: center;
  padding: 20px 0;
}
.partners-icon {
  width: 72px; height: 72px;
  background: rgba(201,169,110,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-size: 1.6rem;
}
.partners-inner .section-label { color: var(--gold); }
.partners-inner .section-title-sm { color: var(--white); margin-bottom: 16px; }
.partners-inner p {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  background: var(--white);
}
.faq-section .section-title { text-align: center; }
.faq-section .section-label { display: block; text-align: center; }
.faq-list {
  max-width: 760px;
  margin: 48px 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: 16px;
  padding: 20px 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  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.9rem;
  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, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final-section {
  position: relative;
  min-height: 560px;
  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(44,44,44,0.78), rgba(168,134,74,0.35));
}
.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: 20px;
}
.cta-title em {
  color: var(--gold-light);
}
.cta-subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 36px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT / FORM
   ============================================ */
.contact-section {
  background: var(--ivory-warm);
}
.contact-section .section-title { text-align: center; }
.contact-section .section-label { display: block; text-align: center; }
.contact-section .section-subtitle { margin: 0 auto 48px; text-align: center; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  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: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-row .form-group { margin-bottom: 0; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.required { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  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: 110px; }
.form-success {
  margin-top: 20px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.form-success i { color: var(--gold); font-size: 1.2rem; }
.form-success p { color: var(--charcoal); font-size: 0.9rem; margin: 0; }

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.contact-info-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.contact-info-card p { font-size: 0.9rem; color: var(--gray); margin-bottom: 20px; }
.contact-details {
  margin-top: 20px;
  border-top: 1px solid var(--gray-lighter);
  padding-top: 16px;
}
.contact-details p {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-details i { color: var(--gold); width: 16px; }
.contact-quote {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.contact-quote i { color: var(--gold); font-size: 1.5rem; margin-bottom: 12px; display: block; }
.contact-quote blockquote {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 12px;
}
.contact-quote cite {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img {
  height: 56px;
  width: auto;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
  display: block;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px;
  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.7);
  font-size: 0.9rem;
  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.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-nav ul li { margin-bottom: 8px; }
.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-contact p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact i { color: var(--gold); width: 14px; }
.footer-bottom {
  padding: 20px 0;
}
.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-bottom: 6px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.wa-float {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 0; right: 0;
  margin: 0 16px;
  z-index: 999;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 14px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all var(--transition);
}
.wa-float i { font-size: 1.2rem; }
.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: 440px;
  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: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--gray-lighter);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--gold); color: var(--white); }
.modal-icon {
  width: 64px; height: 64px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
  font-size: 1.4rem;
}
.modal-box h3 { margin-bottom: 12px; font-size: 1.4rem; }
.modal-box p { font-size: 0.9rem; color: var(--gray); margin-bottom: 24px; }
.modal-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 40px;
  margin-bottom: 24px;
}
.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(30px); }
  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 on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-6px); }

  .how-steps { flex-direction: column; }
  .how-connector { padding-top: 0; transform: rotate(90deg); width: 100%; justify-content: center; margin: -8px 0; }

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

  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

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

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

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

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item-large { grid-row: span 1; }

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

  .demo-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

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

  /* Nav */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(340px, 100vw);
    height: 100vh;
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--nav-height) + 32px) 32px 32px;
    box-shadow: -4px 0 40px rgba(44,44,44,0.12);
    transition: right var(--transition);
    gap: 0;
    z-index: 1000;
  }
  .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: 14px 0; font-size: 1rem; }
  .nav-cta { margin-top: 24px; }

  /* Hero */
  .hero-tagline { display: none; }
  .hero-content { padding: 40px 24px 80px; }

  /* WhatsApp Float */
  .wa-float { display: flex; }

  /* Body pad for wa-float */
  .footer { padding-bottom: 80px; }

  /* How */
  .how-steps { gap: 24px; }
  .how-connector { display: none; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item-large { grid-row: span 1; }

  /* Questions */
  .questions-grid { grid-template-columns: 1fr; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

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

  /* Compare table */
  .compare-table td:first-child { display: table-cell; }

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

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

  /* Demo player */
  .demo-player-card { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .demo-player-info { flex-wrap: wrap; }
}
