:root {
  interpolate-size: allow-keywords;
  --bg: #FDFAF6;
  --surface: #FFFFFF;
  --surface-2: #F7F2EC;
  --ink: #3D2C2E;
  --ink-soft: #6B5658;
  --accent: #D4526E;
  --accent-2: #4A90A4;
  --line: rgba(61,44,46,0.12);
  --line-strong: rgba(61,44,46,0.22);
  --header-h: 72px;
  --radius: 10px;
  --radius-lg: 16px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }

h1,h2,h3,h4,h5,h6 {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.012em;
}

.mono { font-family: 'Courier New', 'Consolas', monospace; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent-2); }

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--ink); color: var(--surface); padding: 8px 16px;
  border-radius: var(--radius); z-index: 9999; font-size: 0.875rem;
}
.skip-link:focus { top: 8px; }

/* Container */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(253,250,246,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
  height: var(--header-h);
  display: flex; align-items: center;
}
.site-header.scrolled {
  background: var(--bg);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
  height: calc(var(--header-h) - 16px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1180px; margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
.logo {
  font-family: system-ui, sans-serif; font-weight: 600;
  font-size: 1.25rem; color: var(--ink); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.logo:hover { color: var(--accent); }
.logo svg { width: 28px; height: 28px; transition: width 240ms ease, height 240ms ease; }
.site-header.scrolled .logo svg { width: 22px; height: 22px; }

/* Nav Desktop */
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  font-size: 0.9rem; color: var(--ink); text-decoration: none;
  position: relative; padding: 4px 0; transition: color 240ms;
}
.nav-desktop a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--accent); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  background: var(--ink); color: var(--surface);
  padding: 10px 22px; border-radius: 6px;
  font-weight: 500; font-size: 0.875rem;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--accent); color: var(--surface); }

@media (max-width: 1024px) { .nav-desktop { display: none; } }

/* Hamburger */
.nav-toggle {
  display: none; position: relative; z-index: 1100;
  width: 44px; height: 44px; background: none; border: none;
  cursor: pointer; padding: 10px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--ink);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
  position: absolute; left: 10px;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); top: 21px; }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); top: 21px; }

@media (max-width: 1024px) { .nav-toggle { display: block; } }

/* Mobile Drawer */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 1040; opacity: 0; pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: 100px 32px 40px;
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a {
  display: block; padding: 14px 0; font-size: 1.1rem;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
}
.mobile-drawer a:hover { color: var(--accent); padding-left: 8px; }
.mobile-drawer a.is-active { color: var(--accent); }
.mobile-drawer .drawer-cta {
  margin-top: 24px; background: var(--accent); color: var(--surface);
  text-align: center; padding: 14px 24px; border-radius: 8px;
  font-weight: 500; border: none;
}
.mobile-drawer .drawer-cta:hover { background: var(--ink); color: var(--surface); }

/* ===== MAIN ===== */
main { padding-top: var(--header-h); }

/* Section spacing */
section { padding: clamp(60px, 10vw, 120px) 0; }

.section-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 16px; max-width: 680px;
}
.section-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--ink-soft); max-width: 560px; line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
  min-height: min(calc(100vh - var(--header-h)), 920px);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: clamp(60px, 12vw, 140px) 0;
}
.hero-content {
  text-align: center; position: relative; z-index: 2;
  max-width: 800px; margin: 0 auto;
}
.hero .section-eyebrow { margin-bottom: 20px; }
.hero-time {
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700; color: var(--accent);
  line-height: 1; margin-bottom: 16px;
  animation: timePulse 3s ease-in-out infinite;
}
@keyframes timePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.02); }
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px; letter-spacing: -0.012em;
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--ink-soft); line-height: 1.7;
  max-width: 580px; margin: 0 auto 32px;
}

/* Countdown */
.countdown {
  display: flex; justify-content: center; gap: clamp(16px, 4vw, 32px);
  margin-bottom: 36px;
}
.countdown-item { text-align: center; }
.countdown-num {
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700; color: var(--ink);
  display: block;
}
.countdown-label {
  font-size: 0.75rem; color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* Hero decoration - vertical timeline line */
.hero-timeline-line {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  opacity: 0.15; transform: translateX(-50%);
}

/* Trust strip */
.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: 28px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--ink-soft);
  background: var(--surface); padding: 6px 14px;
  border-radius: 20px; border: 1px solid var(--line);
}
.trust-badge svg { width: 14px; height: 14px; color: var(--accent); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--surface);
  padding: 14px 32px; border-radius: 8px;
  font-family: system-ui, sans-serif; font-weight: 500;
  font-size: 0.95rem; border: none; cursor: pointer;
  transition: background 240ms cubic-bezier(.2,.7,.2,1), transform 200ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: var(--surface);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(212,82,110,0.35);
}
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  padding: 14px 32px; border-radius: 8px;
  font-family: system-ui, sans-serif; font-weight: 500;
  font-size: 0.95rem; border: 1px solid var(--line-strong);
  cursor: pointer; text-decoration: none;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink);
  border-color: var(--accent); transform: translateY(-2px);
}
.btn-ghost:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ===== TIMELINE SECTION ===== */
.timeline-section { position: relative; background: var(--surface-2); }
.timeline-wrapper {
  position: relative;
  padding-left: 40px;
}
.timeline-line {
  position: absolute; left: 16px; top: 0; bottom: 0;
  width: 2px; background: var(--line-strong);
}
.timeline-line-fill {
  position: absolute; left: 16px; top: 0;
  width: 2px; height: 0; background: var(--accent);
  transition: height 1.2s cubic-bezier(.2,.7,.2,1);
}
.timeline-node {
  position: relative; padding: 28px 0;
  opacity: 0; transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  animation: revealSafety 0.6s 2s cubic-bezier(.2,.7,.2,1) both;
}
.timeline-node.is-in { opacity: 1; transform: none; animation: none; }
.timeline-node:nth-child(1) { transition-delay: 0ms; animation-delay: 2s; }
.timeline-node:nth-child(2) { transition-delay: 80ms; animation-delay: 2.08s; }
.timeline-node:nth-child(3) { transition-delay: 160ms; animation-delay: 2.16s; }
.timeline-node:nth-child(4) { transition-delay: 240ms; animation-delay: 2.24s; }
.timeline-node:nth-child(5) { transition-delay: 320ms; animation-delay: 2.32s; }
.timeline-node:nth-child(6) { transition-delay: 400ms; animation-delay: 2.4s; }
.timeline-node:nth-child(7) { transition-delay: 480ms; animation-delay: 2.48s; }
.timeline-node:nth-child(8) { transition-delay: 560ms; animation-delay: 2.56s; }

.timeline-dot {
  position: absolute; left: -32px; top: 32px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--surface); border: 3px solid var(--accent);
  z-index: 2;
}
.timeline-node.is-active .timeline-dot {
  background: var(--accent);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,82,110,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(212,82,110,0); }
}

.timeline-time {
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: 0.85rem; color: var(--accent);
  font-weight: 700; margin-bottom: 4px;
}
.timeline-title {
  font-size: 1.1rem; font-weight: 600; margin-bottom: 4px;
}
.timeline-desc {
  font-size: 0.9rem; color: var(--ink-soft); max-width: 480px;
}

/* ===== INCLUYE SECTION ===== */
.incluye-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 40px;
}
.incluye-item {
  display: grid; grid-template-columns: 36px 1fr;
  gap: 14px; align-items: start;
  padding: 20px 24px; background: var(--surface);
  border-radius: var(--radius); border: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), box-shadow 240ms;
}
.incluye-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -12px rgba(212,82,110,0.2);
}
.incluye-icon {
  width: 36px; height: 36px; color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.incluye-icon svg { width: 24px; height: 24px; }
.incluye-text h4 { font-size: 0.95rem; margin-bottom: 4px; }
.incluye-text p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.6; }

/* ===== PLANES SECTION ===== */
.planes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 48px;
}
.plan-card {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px); border: 1px solid var(--line);
  position: relative; overflow: hidden;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -16px rgba(212,82,110,0.18);
}
.plan-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 32px -8px rgba(212,82,110,0.15);
}
.plan-card.featured::before {
  content: 'Popular'; position: absolute; top: 16px; right: -28px;
  background: var(--accent); color: var(--surface);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em;
  padding: 4px 36px; transform: rotate(45deg);
}
.plan-name {
  font-size: 1.1rem; font-weight: 600; margin-bottom: 8px;
}
.plan-price {
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700;
  color: var(--accent); margin-bottom: 4px;
}
.plan-currency { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 20px; }
.plan-includes { list-style: none; margin-bottom: 24px; }
.plan-includes li {
  padding: 8px 0; font-size: 0.9rem; color: var(--ink);
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid var(--line);
}
.plan-includes li:last-child { border-bottom: none; }
.plan-includes li::before {
  content: ''; display: inline-block; min-width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%; margin-top: 8px;
}
.plan-excludes { list-style: none; margin-bottom: 24px; }
.plan-excludes li {
  padding: 6px 0; font-size: 0.85rem; color: var(--ink-soft);
  display: flex; align-items: flex-start; gap: 10px;
}
.plan-excludes li::before {
  content: ''; display: inline-block; min-width: 6px; height: 6px;
  background: var(--line-strong); border-radius: 50%; margin-top: 7px;
}
.plan-disclaimer {
  font-size: 0.75rem; color: var(--ink-soft);
  font-style: italic; margin-top: 12px;
}

/* ===== PROCESO SECTION ===== */
.proceso-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 48px;
  position: relative;
}
.proceso-steps::before {
  content: ''; position: absolute;
  top: 40px; left: 12.5%; right: 12.5%; height: 2px;
  background: var(--line-strong);
}
.proceso-step {
  text-align: center; position: relative;
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Courier New', 'Consolas', monospace; font-weight: 700;
  font-size: 1.1rem; margin: 0 auto 16px;
  position: relative; z-index: 2;
  box-shadow: 0 4px 16px -4px rgba(212,82,110,0.3);
}
.step-icon {
  width: 40px; height: 40px; margin: 0 auto 12px; color: var(--accent-2);
}
.step-icon svg { width: 100%; height: 100%; }
.proceso-step h4 { font-size: 0.95rem; margin-bottom: 8px; }
.proceso-step p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.6; }

@media (max-width: 768px) {
  .proceso-steps { grid-template-columns: 1fr 1fr; }
  .proceso-steps::before { display: none; }
}
@media (max-width: 480px) {
  .proceso-steps { grid-template-columns: 1fr; }
}

/* ===== AGENDAR / FORM SECTION ===== */
.agendar-section { background: var(--surface-2); }
.form-wrap {
  max-width: 600px; margin: 0 auto; margin-top: 40px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 0.85rem; font-weight: 500;
  margin-bottom: 6px; color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--line-strong); border-radius: 6px;
  font-family: system-ui, sans-serif; font-size: 0.95rem;
  color: var(--ink); background: var(--surface);
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,82,110,0.12);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 18px; height: 18px; min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field-checkbox {
  display: flex; align-items: flex-start; gap: 12px;
}
.field-checkbox label { margin-bottom: 0; font-size: 0.85rem; line-height: 1.5; }
.field .error-msg {
  font-size: 0.8rem; color: var(--accent); margin-top: 4px; display: none;
}
.field.has-error .error-msg { display: block; }
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: var(--accent);
}
.form-success {
  text-align: center; padding: 40px 20px;
  display: none;
}
.form-success.is-visible { display: block; }
.form-success h3 { color: var(--accent); margin-bottom: 8px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ===== FAQ SECTION ===== */
.faq-list { max-width: 720px; margin: 40px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer; font-weight: 500;
  font-size: 1rem; list-style: none;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; color: var(--accent);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item > .faq-body {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 26px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}
.faq-body p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 40px;
}
.testimonial-card {
  background: var(--surface); padding: 28px;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  position: relative;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -12px rgba(212,82,110,0.18);
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 16px; left: 24px;
  font-size: 3rem; color: var(--accent); opacity: 0.25;
  font-family: Georgia, serif; line-height: 1;
}
.testimonial-text {
  font-size: 0.9rem; color: var(--ink); line-height: 1.7;
  margin-bottom: 16px; padding-top: 12px;
}
.testimonial-author { font-size: 0.8rem; color: var(--ink-soft); font-weight: 500; }

/* ===== STATS / COUNTERS ===== */
.stats-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(24px, 5vw, 60px);
  padding: 48px 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 700;
  color: var(--accent); display: block;
}
.stat-label { font-size: 0.85rem; color: var(--ink-soft); margin-top: 4px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.8);
  padding: clamp(48px, 8vw, 80px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px; margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--surface); font-size: 0.9rem; margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.footer-col p, .footer-col a {
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
  line-height: 1.8; text-decoration: none;
}
.footer-col a:hover { color: var(--accent); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; text-align: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--accent); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 20px 24px;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.2);
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner h4 { font-size: 0.95rem; margin-bottom: 8px; }
.cookie-banner p { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-actions button {
  flex: 1; min-width: 100px; min-height: 48px;
  padding: 12px 16px; border-radius: 6px;
  font-size: 0.82rem; font-weight: 500; cursor: pointer;
  font-family: system-ui, sans-serif;
  transition: background 200ms, color 200ms, border-color 200ms;
  touch-action: manipulation;
}
.cookie-accept { background: var(--ink); color: var(--surface); border: none; }
.cookie-accept:hover { background: var(--accent); color: var(--surface); }
.cookie-reject { background: transparent; color: var(--ink-soft); border: 1px solid var(--line-strong); font-weight: 500; }
.cookie-reject:hover { background: var(--surface-2); color: var(--ink); border-color: var(--ink-soft); }
.cookie-settings { background: transparent; color: var(--ink-soft); border: 1px solid var(--line); }
.cookie-settings:hover { background: var(--surface-2); color: var(--ink); }

/* ===== REVEAL ANIMATIONS ===== */
@keyframes revealSafety {
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 700ms cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
  animation: revealSafety 0.7s 1.5s cubic-bezier(.16,1,.3,1) both;
}
.reveal.is-in { opacity: 1; transform: none; animation: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 100ms); animation-delay: calc(1.5s + var(--i) * 100ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; animation: none; }

/* ===== HERO IMAGE ===== */
.hero-img {
  margin-top: 36px;
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px -16px rgba(61,44,46,0.18);
}

/* ===== NICHE ANIMATIONS ===== */
/* Ring shimmer on CTA */
@keyframes ringShimmer {
  0% { box-shadow: 0 0 0 0 rgba(212,82,110,0.3); }
  50% { box-shadow: 0 0 0 14px rgba(212,82,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,82,110,0); }
}
.hero .btn-primary { animation: ringShimmer 3.5s cubic-bezier(.4,0,.2,1) infinite; }

/* Heartbeat on countdown */
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.05); }
  28% { transform: scale(1); }
  42% { transform: scale(1.03); }
  56% { transform: scale(1); }
}
.countdown { animation: heartbeat 2.8s ease-in-out infinite; }

/* Veil flow decoration — romantic aura */
@keyframes veilFlow {
  0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.06; }
  33% { transform: translateY(-16px) rotate(1.5deg) scale(1.04); opacity: 0.09; }
  66% { transform: translateY(-8px) rotate(-0.5deg) scale(1.02); opacity: 0.07; }
  100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.06; }
}
.hero::before {
  content: ''; position: absolute; bottom: 10%; left: -8%;
  width: 320px; height: 480px; border-radius: 50%;
  background: radial-gradient(ellipse, var(--accent-2), transparent 70%);
  opacity: 0.05; pointer-events: none;
  animation: veilFlow 16s ease-in-out infinite 3s;
}
.hero::after {
  content: ''; position: absolute; top: 15%; right: -8%;
  width: 420px; height: 620px; border-radius: 50%;
  background: radial-gradient(ellipse, var(--accent), transparent 70%);
  opacity: 0.06; pointer-events: none;
  animation: veilFlow 14s ease-in-out infinite;
}

/* Timeline node glow */
@keyframes nodeGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,144,164,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(74,144,164,0); }
}
.timeline-node:nth-child(even) .timeline-dot {
  border-color: var(--accent-2);
}
.timeline-node:nth-child(even).is-active .timeline-dot {
  background: var(--accent-2);
  animation: nodeGlow 2.2s ease-in-out infinite;
}

/* Bouquet sway on plan cards */
@keyframes bouquetSway {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}
.plan-card:hover .plan-icon svg {
  animation: bouquetSway 1s ease-in-out infinite;
}

/* Warm glow on card hover */
.incluye-item:hover .incluye-icon svg {
  filter: drop-shadow(0 0 6px rgba(212,82,110,0.35));
  transition: filter 320ms cubic-bezier(.16,1,.3,1);
}
.incluye-item .incluye-icon svg {
  transition: filter 320ms cubic-bezier(.16,1,.3,1);
}

/* Testimonial card shimmer border */
.testimonial-card::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  background: linear-gradient(135deg, rgba(212,82,110,0.15), transparent 40%, transparent 60%, rgba(74,144,164,0.15)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 400ms cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.testimonial-card:hover::after { opacity: 1; }

/* Soft float on trust badges */
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.trust-badge:hover {
  border-color: var(--accent);
  animation: badgeFloat 1.2s ease-in-out infinite;
}
.trust-badge { transition: border-color 300ms; }

/* Step number pulse on hover */
.proceso-step:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 6px 24px -4px rgba(212,82,110,0.4);
}
.step-num {
  transition: transform 300ms cubic-bezier(.16,1,.3,1), box-shadow 300ms;
}

/* Plan card featured glow */
@keyframes featuredGlow {
  0%, 100% { box-shadow: 0 8px 32px -8px rgba(212,82,110,0.15); }
  50% { box-shadow: 0 12px 40px -8px rgba(212,82,110,0.25); }
}
.plan-card.featured { animation: featuredGlow 4s ease-in-out infinite; }

/* FAQ item hover accent */
.faq-item summary:hover { color: var(--accent); padding-left: 6px; }
.faq-item summary {
  transition: color 240ms, padding-left 280ms cubic-bezier(.16,1,.3,1);
}

/* Button press feedback */
.btn-primary:active { transform: translateY(0) scale(0.97); }
.btn-ghost:active { transform: translateY(0) scale(0.97); }

/* Nav link underline animation enhancement */
.nav-desktop a::after {
  transition: width 340ms cubic-bezier(.16,1,.3,1);
}

/* Footer link hover glow */
.footer-col a {
  transition: color 240ms, text-shadow 240ms;
}
.footer-col a:hover {
  text-shadow: 0 0 12px rgba(212,82,110,0.3);
}

@media (prefers-reduced-motion: reduce) {
  .hero .btn-primary,
  .countdown,
  .hero::before,
  .hero::after,
  .timeline-node.is-active .timeline-dot,
  .plan-card:hover .plan-icon svg,
  .plan-card.featured,
  .trust-badge:hover { animation: none !important; }
  .hero::before, .hero::after { opacity: 0.05; transform: none; }
  .incluye-item:hover .incluye-icon svg { filter: none; }
  .proceso-step:hover .step-num { transform: none; }
  .testimonial-card:hover::after { opacity: 0; }
  .faq-item summary:hover { padding-left: 0; }
  .btn-primary:active, .btn-ghost:active { transform: none; }
  .timeline-node { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ===== CONTACT PAGE ===== */
.contact-channels {
  display: grid; gap: 0; margin-top: 40px;
}
.contact-row {
  display: grid; grid-template-columns: 24px 1fr;
  gap: 14px; align-items: start;
  padding: 16px 0; border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.4,0,.2,1), background 240ms;
  border-radius: 6px; padding-left: 8px; padding-right: 8px;
}
.contact-row:hover {
  transform: translateX(4px); background: var(--surface-2);
}
.contact-row svg {
  width: 20px; height: 20px; color: var(--ink-soft);
  transition: color 240ms;
  margin-top: 2px;
}
.contact-row:hover svg { color: var(--accent); }
.contact-row .contact-label {
  font-size: 0.75rem; color: var(--ink-soft); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 2px;
}
.contact-row .contact-value {
  font-size: 0.95rem; color: var(--ink);
  word-break: break-word; overflow-wrap: anywhere;
}
.contact-row a { color: var(--ink); text-decoration: none; }
.contact-row a:hover { color: var(--accent); }

/* ===== CONTACT LAYOUT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  margin-top: 48px;
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ===== ABOUT PAGE EXTRAS ===== */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px; margin-top: 40px;
}
.team-card {
  background: var(--surface); padding: 28px;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  text-align: center;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -12px rgba(212,82,110,0.2);
}
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--surface-2); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.5rem; font-weight: 600;
  font-family: system-ui, sans-serif;
}
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card .team-role { font-size: 0.8rem; color: var(--accent); margin-bottom: 12px; }
.team-card p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.7; }

/* ===== POLICY PAGES ===== */
.policy-content { max-width: 780px; margin: 0 auto; }
.policy-content h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.policy-content h3 { font-size: 1.15rem; margin: 28px 0 12px; }
.policy-content p { margin-bottom: 16px; line-height: 1.75; color: var(--ink-soft); }
.policy-content ul, .policy-content ol { margin: 12px 0 20px 24px; }
.policy-content li { margin-bottom: 8px; line-height: 1.7; color: var(--ink-soft); }

/* ===== TABLE SCROLL ===== */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table { border-collapse: collapse; width: 100%; }
th, td { padding: 12px 16px; text-align: left; font-size: 0.9rem; border-bottom: 1px solid var(--line); }
th { font-weight: 600; background: var(--surface-2); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }
td { color: var(--ink-soft); }

/* ===== COUNTER ANIMATION ===== */
.counter-up { transition: none; }

/* ===== DARK BAND ===== */
.dark-band {
  background: var(--ink); color: var(--surface); padding: clamp(40px, 6vw, 60px) 0;
}
.dark-band .section-eyebrow { color: var(--accent); }
.dark-band .section-title { color: var(--surface); }
.dark-band .section-sub { color: rgba(255,255,255,0.7); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}
@media (max-width: 768px) {
  .planes-grid { grid-template-columns: 1fr; }
  .incluye-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { gap: 24px; }
}
@media (max-width: 640px) {
  section { padding: clamp(48px, 8vw, 80px) 0; }
  .hero-time { font-size: clamp(3rem, 16vw, 5rem); }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip { gap: 8px; }
  .trust-badge { font-size: 0.72rem; padding: 5px 10px; }
  .hero-timeline-line { opacity: 0.05; }
}
@media (max-width: 430px) {
  .countdown { gap: 12px; }
  .countdown-num { font-size: 1.3rem; }
  .plan-card { padding: 20px; }
}

/* Focus ring */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px;
}

/* Touch targets */
button, a.btn-primary, a.btn-ghost, .drawer-cta {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 640px) {
  .cookie-banner {
    bottom: 0; left: 0; right: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 20px 20px calc(24px + env(safe-area-inset-bottom, 0px));
    max-width: 100%;
  }
  .cookie-actions { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .cookie-actions button { min-height: 48px; font-size: 0.85rem; min-width: 80px; }
}

/* ===== ANIMATED TIMELINE SVG ===== */
.timeline-svg-wrap {
  position: relative; width: 100%; max-width: 900px;
  margin: 0 auto 48px; height: 80px; overflow: hidden;
}
.timeline-svg-track {
  display: flex; align-items: center; height: 100%;
  position: relative;
}
.timeline-svg-line {
  position: absolute; top: 50%; left: 0; right: 0;
  height: 2px; background: var(--line-strong); transform: translateY(-50%);
}
.timeline-svg-nodes {
  display: flex; justify-content: space-between; width: 100%;
  position: relative; z-index: 2; padding: 0 20px;
}
.timeline-svg-node {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--line-strong);
  transition: background 400ms, border-color 400ms, transform 400ms;
}
.timeline-svg-node.is-active {
  background: var(--accent); border-color: var(--accent);
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(212,82,110,0.2);
}

/* ===== UTILITY ===== */
a[href*="mailto:"], a[href*="http"], .contact-value {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.section-img {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-lg);
  margin-top: 24px;
}

.stats-img {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius-lg);
  margin: 0 auto 32px;
}

/* ===== WEDDING MICRO-EFFECTS ===== */
@keyframes softWarmGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,82,110,0); }
  50% { box-shadow: 0 0 24px -4px rgba(212,82,110,0.12); }
}
.plan-card:hover {
  box-shadow: 0 20px 48px -16px rgba(212,82,110,0.18), 0 0 20px -4px rgba(212,82,110,0.08);
}
.hero .btn-primary:hover {
  box-shadow: 0 12px 32px -8px rgba(212,82,110,0.4);
}
.incluye-item {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms;
}
.incluye-item:hover {
  border-color: rgba(212,82,110,0.2);
}
.testimonial-card {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
}
.faq-item[open] summary { color: var(--accent); }
.contact-row {
  transition: transform 280ms cubic-bezier(.16,1,.3,1), background 240ms, box-shadow 240ms;
}
.contact-row:hover {
  box-shadow: 0 4px 16px -8px rgba(212,82,110,0.12);
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; background: var(--accent);
  width: 0%; transition: width 60ms linear;
  pointer-events: none;
}

/* ===== DRAWER CLOSE ===== */
.drawer-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  font-size: 1.5rem; color: var(--ink);
  border-radius: 50%;
  transition: background 200ms, color 200ms;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.drawer-close:hover { background: var(--surface-2); color: var(--accent); }

/* ===== PRINT ===== */
@media print {
  .site-header, .cookie-banner, .nav-toggle, .mobile-drawer, .drawer-backdrop { display: none !important; }
  main { padding-top: 0 !important; }
  .reveal, .timeline-node { opacity: 1 !important; transform: none !important; animation: none !important; }
  body { color: #000; background: #fff; }
}
