/* ════════════════════════════════════════════════════════
   Nutricionistas Valencia · Carlos Mudarra
   Hermana pero distinta — terracota mediterránea
   ════════════════════════════════════════════════════════ */

:root {
  /* ── Acento único: verde nutrición (desaturado, premium) ── */
  --terra:        #34655A;   /* accent: titulares, enlaces, botones */
  --terra-hover:  #294F47;
  --terra-soft:   #5C887B;
  --coral:        #7FA697;   /* acento suave (misma familia) */
  --peach-pale:   #E9F1EC;   /* tinte pálido: chips y fondos suaves */

  /* ── Verde (secundarios, misma familia) ── */
  --sage:         #4F7A6B;
  --sage-deep:    #34564A;
  --mint:         #BBD5C8;
  --mint-pale:    #E4EEE8;

  /* ── Reserva (= acento; sin segundo color) ── */
  --indigo:       #34655A;
  --indigo-hover: #294F47;
  --indigo-pale:  #E9F1EC;

  /* ── Base cálida (bone) ── */
  --cream:        #F6F3EC;   /* fondo general */
  --card:         #FFFFFF;
  --border:       #E7E1D6;
  --border-warm:  #DDD6C9;
  --text:         #1E2421;
  --muted:        #5B635D;
  --subtle:       #8C918A;

  /* ── Funcionales ── */
  --amber:        #C7873A;
  --wa:           #25D366;   /* WhatsApp */
  --wa-hover:     #1FB857;
  --dark:         #1C2723;   /* secciones oscuras: verde-tinta */
  --dark-warm:    #161F1B;

  /* ── Sombras verde-tinta ── */
  --shadow-sm:    0 4px 16px rgba(28, 50, 44, 0.07);
  --shadow:       0 18px 44px rgba(28, 50, 44, 0.12);
  --shadow-lg:    0 30px 70px rgba(28, 50, 44, 0.16);
  --shadow-terra: 0 14px 34px rgba(52, 101, 90, 0.24);
  --shadow-indigo:0 14px 34px rgba(52, 101, 90, 0.26);

  /* ── Radios ── */
  --r-pill:  9999px;
  --r-card:  1.75rem;
  --r-lg:    1.25rem;
  --r-md:    1rem;
  --r-sm:    0.7rem;

  /* ── Layout ── */
  --max:     1180px;
  --pad-x:   1.5rem;

  /* ── Tipografía ── */
  --serif: 'Fraunces', 'Lora', Georgia, serif;
  --sans:  'Outfit', system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  text-wrap: pretty;
}

a { color: inherit; -webkit-tap-highlight-color: rgba(181,83,47,0.12); }
img { display: block; max-width: 100%; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Tipografía base ── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-optical-sizing: auto;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
}
.label::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }

/* ════════ BOTONES ════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 1rem 1.6rem;
  min-height: 52px;
  border-radius: var(--r-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--ease) .25s, background .2s, box-shadow .25s, border-color .2s, color .2s;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn:active { transform: scale(0.97); }

/* CTA de reserva — índigo dominante, destaca sobre el campo terracota */
.btn-book {
  background: var(--indigo);
  color: #fff;
  box-shadow: var(--shadow-indigo);
}
.btn-book:hover { background: var(--indigo-hover); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(94,97,176,.38); }

.btn-terra { background: var(--terra); color: #fff; }
.btn-terra:hover { background: var(--terra-hover); transform: translateY(-2px); box-shadow: var(--shadow-terra); }

.btn-outline {
  background: transparent;
  color: var(--terra);
  border: 1.5px solid var(--border-warm);
}
.btn-outline:hover { border-color: var(--terra); background: var(--peach-pale); transform: translateY(-2px); }

.btn-ghost-dark {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.22);
}
.btn-ghost-dark:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.14); }

.btn-lg { font-size: 1.0625rem; padding: 1.1rem 1.9rem; min-height: 58px; }
.btn-block { width: 100%; }

.wa-icon { display: inline-flex; }

/* ════════ NAVBAR ════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: rgba(251, 248, 244, 0);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.nav.scrolled {
  background: rgba(251, 248, 244, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.7rem 0;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; flex-shrink: 0; }
.brand-icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.brand-icon img { width: 100%; height: 100%; object-fit: cover; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.05;
}
.brand-name small {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--terra);
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--terra); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-cta .btn { padding: 0.7rem 1.2rem; min-height: 46px; font-size: 0.95rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 110;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all .35s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0 0 auto 0;
  background: rgba(251,248,244,.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 5.5rem 1.5rem 2rem;
  z-index: 99;
  display: flex; flex-direction: column;
  transform: translateY(-110%);
  visibility: hidden;
  transition: transform .42s var(--ease), visibility 0s linear .42s;
  box-shadow: var(--shadow);
}
.mobile-nav.open { transform: translateY(0); visibility: visible; transition: transform .42s var(--ease); }
.mobile-nav a:not(.btn) {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 600;
  color: var(--text); text-decoration: none;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-nav a svg { width: 18px; height: 18px; color: var(--coral); }
.mobile-nav .btn { margin-top: 1.5rem; }

/* ════════ HERO ════════ */
.hero {
  padding: 8.5rem 0 3.5rem;
  position: relative;
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--mint-pale);
  color: var(--sage-deep);
  font-size: 0.82rem; font-weight: 600;
  padding: 0.45rem 0.95rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sage);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.5;transform:scale(.7);} }

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}
.hero h1 em { font-style: italic; color: var(--terra); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 34ch;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.2rem; }
.hero-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.98rem; font-weight: 500; color: var(--muted);
  text-decoration: none;
}
.hero-phone svg { width: 17px; height: 17px; color: var(--sage); }
.hero-phone strong { color: var(--text); font-weight: 600; }

/* Hero imagen + badge de valoración grande */
.hero-media { position: relative; }
.hero-frame {
  position: relative; z-index: 1;
  border-radius: 2.5rem 2.5rem 2.5rem 5rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--peach-pale);
  box-shadow: var(--shadow-lg);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-blob { display: none; }
.hero-media::before {
  content: ""; position: absolute; z-index: 0;
  inset: 1.6rem -1.6rem -1.6rem 1.6rem;
  background: var(--peach-pale);
  border-radius: 2.5rem 2.5rem 2.5rem 5rem;
}
.rating-badge {
  position: absolute; z-index: 3;
  bottom: 1.6rem; left: -1.4rem;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.9rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: transform .25s var(--ease);
}
.rating-badge:hover { transform: translateY(-3px); }
.rating-num {
  font-family: var(--serif);
  font-size: 2.4rem; font-weight: 700;
  line-height: 1; color: var(--text);
}
.rating-stars { display: flex; gap: 2px; margin-bottom: 0.25rem; }
.rating-stars svg { width: 15px; height: 15px; fill: var(--amber); }
.rating-meta { font-size: 0.78rem; color: var(--muted); line-height: 1.3; }
.rating-meta strong { color: var(--text); }
.g-logo { font-weight: 700; }
.g-logo .b{color:#4285F4}.g-logo .r{color:#EA4335}.g-logo .y{color:#FBBC05}.g-logo .g{color:#34A853}

/* ════════ TRUST BAR ════════ */
.trust {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 1.1rem var(--pad-x);
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 500; color: var(--muted);
  white-space: nowrap;
}
.trust-item svg { width: 17px; height: 17px; color: var(--sage); flex-shrink: 0; }
.trust-item.stars { color: var(--text); font-weight: 600; text-decoration: none; }
.trust-item.stars .s { display: inline-flex; gap: 1px; }
.trust-item.stars .s svg { width: 14px; height: 14px; fill: var(--amber); color: var(--amber); }
.trust-sep { width: 1px; height: 16px; background: var(--border-warm); }

/* ════════ SECCIONES ════════ */
.section { padding: 5.5rem 0; }
.section-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }
.section.white { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section.peach { background: var(--peach-pale); }

.section-head { max-width: 38rem; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .label { justify-content: center; }
.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.06;
  margin: 1rem 0 1rem;
}
.section h2 em { font-style: italic; color: var(--terra); }
.section-head p { font-size: 1.12rem; color: var(--muted); max-width: 46ch; }
.section-head.center p { margin-left: auto; margin-right: auto; }

.lead { font-size: 1.22rem; line-height: 1.6; color: var(--muted); max-width: 40ch; }

/* ════════ BLOQUE "POR QUÉ COLEGIADO" / texto destacado ════════ */
.feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.feature-card .seal {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--indigo-pale); color: var(--indigo);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.5rem 1rem; border-radius: var(--r-pill);
  margin-bottom: 1.4rem;
}
.feature-card .seal svg { width: 17px; height: 17px; }
.feature p { font-size: 1.08rem; color: var(--muted); margin-bottom: 1rem; }
.feature p:last-child { margin-bottom: 0; }
.feature p strong { color: var(--text); font-weight: 600; }

/* ════════ TARJETAS DE SERVICIO ════════ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none;
  transition: transform .35s var(--ease), box-shadow .35s ease;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-img { height: 170px; overflow: hidden; background: var(--peach-pale); }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc:hover .svc-img img { transform: scale(1.06); }
.svc-body { padding: 1.9rem; display: flex; flex-direction: column; flex: 1; }
.svc-ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.svc-ico svg { width: 24px; height: 24px; }
.svc-ico.terra { background: var(--peach-pale); color: var(--terra); }
.svc-ico.sage  { background: var(--mint-pale); color: var(--sage-deep); }
.svc-ico.indigo{ background: var(--indigo-pale); color: var(--indigo); }
.svc h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 0.6rem; }
.svc-body p { font-size: 1rem; color: var(--muted); line-height: 1.55; flex: 1; }
.svc-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.95rem; font-weight: 600; color: var(--terra);
  margin-top: 1.4rem;
  transition: gap .2s ease;
}
.svc:hover .svc-link { gap: 0.7rem; }
.svc-link svg { width: 16px; height: 16px; }

/* ════════ PASOS "CÓMO FUNCIONA" ════════ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 2.2rem;
  position: relative;
}
.step-n {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.3rem; font-weight: 700; color: #fff;
  margin-bottom: 1.3rem;
}
.step:nth-child(1) .step-n { background: var(--terra); }
.step:nth-child(2) .step-n { background: var(--sage); }
.step:nth-child(3) .step-n { background: var(--indigo); }
.step h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.6rem; }
.step p { font-size: 1rem; color: var(--muted); line-height: 1.55; }
.step-ico {
  position: absolute; top: 2.2rem; right: 2.2rem;
  width: 26px; height: 26px; color: var(--coral); opacity: .85;
}
.step-ico svg { width: 100%; height: 100%; }

/* ════════ TABLA DE PRECIOS ════════ */
.price-table {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.price-row:last-child { border-bottom: none; }
.price-row.head {
  background: var(--peach-pale);
  font-family: var(--sans);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--terra);
  padding: 1rem 2rem;
}
.price-row.featured { background: var(--mint-pale); }
.price-name { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; color: var(--text); }
.price-name small { display: block; font-family: var(--sans); font-size: 0.85rem; font-weight: 400; color: var(--muted); margin-top: 0.15rem; }
.price-dur { font-size: 0.98rem; color: var(--muted); }
.price-val { font-family: var(--serif); font-size: 1.65rem; font-weight: 700; color: var(--terra); white-space: nowrap; }
.price-val small { font-family: var(--sans); font-size: 0.85rem; font-weight: 500; color: var(--muted); }
.price-tag {
  display: inline-block; font-family: var(--sans);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--sage-deep); background: var(--mint);
  padding: 0.2rem 0.55rem; border-radius: var(--r-pill);
  margin-left: 0.5rem; vertical-align: middle;
}

.includes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 2rem;
  margin-top: 2rem;
}
.includes li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  list-style: none; font-size: 1.02rem; color: var(--text);
}
.includes svg { width: 20px; height: 20px; color: var(--sage); flex-shrink: 0; margin-top: 2px; }

/* ════════ RESEÑAS ════════ */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 2rem;
  display: flex; flex-direction: column;
}
.review.placeholder {
  background: repeating-linear-gradient(135deg, #fff, #fff 14px, var(--peach-pale) 14px, var(--peach-pale) 28px);
  border: 1.5px dashed var(--coral);
}
.review-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.review-stars svg { width: 16px; height: 16px; fill: var(--amber); }
.review p { font-size: 1.02rem; color: var(--text); line-height: 1.6; flex: 1; }
.review-by { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.4rem; }
.review-av {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: #fff;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.98rem; color: var(--text); }
.review-src { font-size: 0.8rem; color: var(--muted); display: flex; align-items: center; gap: 0.3rem; }
.ph-note {
  font-family: var(--sans); font-size: 0.92rem; color: var(--terra);
  font-weight: 500; line-height: 1.5; flex: 1;
}
.ph-note strong { display: block; font-weight: 700; margin-bottom: 0.4rem; }

/* ════════ FAQ ACORDEÓN ════════ */
.faq { max-width: 48rem; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: box-shadow .25s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem 1.6rem;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.18rem; font-weight: 600; color: var(--text);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%; background: var(--peach-pale); color: var(--terra);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease);
}
.faq-item summary .chev svg { width: 16px; height: 16px; }
.faq-item[open] summary .chev { transform: rotate(180deg); background: var(--terra); color: #fff; }
.faq-answer { padding: 0 1.6rem 1.5rem; }
.faq-answer p { font-size: 1.04rem; color: var(--muted); line-height: 1.6; }

/* ════════ CTA FINAL ════════ */
.cta {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ""; position: absolute;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,122,107,.32) 0%, transparent 70%);
  right: -180px; top: -160px; pointer-events: none;
}
.cta::after {
  content: ""; position: absolute;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  left: -140px; bottom: -160px; pointer-events: none;
}
.cta-inner {
  max-width: var(--max); margin: 0 auto; padding: 5.5rem var(--pad-x);
  position: relative; z-index: 1;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.cta h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 700; color: #fff; line-height: 1.05;
  margin-bottom: 1.1rem;
}
.cta h2 em { font-style: italic; color: var(--coral); }
.cta p { font-size: 1.15rem; color: rgba(255,255,255,.66); max-width: 42ch; margin: 0 auto 2.2rem; }
/* botón de reserva en CTA oscura: relleno claro para máximo contraste */
.cta .btn-book { background: #fff; color: var(--terra); box-shadow: 0 14px 34px rgba(0,0,0,.28); }
.cta .btn-book:hover { background: var(--peach-pale); color: var(--terra-hover); }
.price-val, .price-dur { font-variant-numeric: tabular-nums; }

/* ════════ CONTACTO / NAP ════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.nap-list { display: flex; flex-direction: column; gap: 0.85rem; }
.nap-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.3rem 1.4rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
a.nap-row:hover { border-color: var(--terra); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.nap-ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--peach-pale); color: var(--terra);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nap-ico.wa { background: rgba(37,211,102,.12); color: var(--wa-hover); }
.nap-ico svg { width: 20px; height: 20px; }
.nap-lbl { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--subtle); margin-bottom: 0.2rem; }
.nap-val { font-size: 1.05rem; font-weight: 600; color: var(--text); line-height: 1.35; }

/* Mapa diferido */
.map-embed {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: var(--mint-pale);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  cursor: pointer;
  background:
    radial-gradient(circle at 30% 30%, var(--mint-pale), transparent 60%),
    radial-gradient(circle at 70% 70%, var(--peach-pale), transparent 60%),
    var(--cream);
  text-align: center; padding: 2rem;
}
.map-placeholder .pin {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--terra); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.map-placeholder .pin svg { width: 26px; height: 26px; }
.map-placeholder span { font-weight: 600; color: var(--text); }
.map-placeholder small { color: var(--muted); font-size: 0.9rem; }

/* Aviso editable para Carlos */
.editable-note {
  display: flex; align-items: flex-start; gap: 0.7rem;
  background: var(--indigo-pale);
  border: 1px dashed var(--indigo);
  border-radius: var(--r-sm);
  padding: 0.9rem 1.1rem;
  font-size: 0.92rem; color: var(--indigo);
  margin-top: 1.25rem;
}
.editable-note svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }

/* ════════ CONTENT PROSE (páginas internas) ════════ */
.prose { max-width: 44rem; }
.prose .guide-item {
  display: grid; grid-template-columns: auto 1fr; gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.prose .guide-item:last-of-type { border-bottom: none; }
.guide-num {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: var(--terra); line-height: 1;
  width: 2.2rem;
}
.guide-item h3 { font-size: 1.45rem; font-weight: 600; margin-bottom: 0.5rem; }
.guide-item p { font-size: 1.08rem; color: var(--muted); line-height: 1.6; }
.guide-item.warn .guide-num { color: var(--terra); }

.callout {
  background: var(--peach-pale);
  border-left: none;
  border-radius: var(--r-card);
  padding: 2.2rem 2.4rem;
  margin: 2.5rem 0;
}
.callout p { font-size: 1.15rem; color: var(--text); line-height: 1.55; }
.callout p strong { color: var(--terra); }

.info-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin: 2rem 0; }
.info-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 2rem;
}
.info-card .ic {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--mint-pale); color: var(--sage-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.info-card .ic svg { width: 22px; height: 22px; }
.info-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; }
.info-card p { font-size: 1rem; color: var(--muted); line-height: 1.55; }

/* Page hero (internas) */
.page-hero { padding: 8.5rem 0 3rem; }
.page-hero .breadcrumb {
  font-size: 0.9rem; color: var(--muted); margin-bottom: 1.2rem;
}
.page-hero .breadcrumb a { color: var(--terra); text-decoration: none; }
.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700; line-height: 1.04; letter-spacing: -0.02em;
  margin-bottom: 1.3rem;
}
.page-hero h1 em { font-style: italic; color: var(--terra); }
.page-hero .intro { font-size: 1.2rem; color: var(--muted); line-height: 1.6; max-width: 44ch; }

/* ════════ FOOTER ════════ */
.footer { background: var(--dark-warm); color: rgba(255,255,255,.7); padding: 4rem 0 2rem; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.1rem; }
.footer-brand .brand-icon { box-shadow: none; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-name small { color: var(--coral); }
.footer-about { font-size: 0.96rem; line-height: 1.6; color: rgba(255,255,255,.6); max-width: 32ch; }
.footer-nap { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-top: 1.2rem; }
.footer-nap strong { color: rgba(255,255,255,.9); font-weight: 600; }
.footer-col h4 { font-family: var(--sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.96rem; color: rgba(255,255,255,.66); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--coral); }
.footer-socials { display: flex; gap: 0.6rem; margin-top: 0.3rem; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: all .2s;
}
.footer-socials a:hover { background: var(--terra); color: #fff; transform: translateY(-2px); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  padding-top: 1.8rem;
  font-size: 0.86rem; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.55); text-decoration: none; }
.footer-bottom a:hover { color: var(--coral); }
.footer-parent { display: inline-flex; align-items: center; gap: 0.4rem; }
.footer-parent a { color: var(--coral); font-weight: 500; }

/* ════════ BOTÓN FLOTANTE WHATSAPP ════════ */
.wa-float {
  position: fixed;
  bottom: 1.25rem; right: 1.25rem;
  z-index: 120;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s ease;
  animation: wa-pop .5s var(--ease) .8s both;
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 36px rgba(37,211,102,.55); }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--wa); opacity: .6;
  animation: wa-ring 2.4s ease-out infinite;
}
@keyframes wa-ring { 0%{transform:scale(1);opacity:.6;} 100%{transform:scale(1.5);opacity:0;} }
@keyframes wa-pop { from{transform:scale(0);} to{transform:scale(1);} }
.wa-float .wa-tip {
  position: absolute; right: 74px; top: 50%; transform: translateY(-50%);
  background: #fff; color: var(--text);
  font-family: var(--sans); font-size: 0.9rem; font-weight: 600;
  padding: 0.55rem 0.9rem; border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.wa-float:hover .wa-tip { opacity: 1; }

/* ════════ REVEAL ════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}.d4{transition-delay:.32s}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-media { order: -1; max-width: 420px; }
  .feature { grid-template-columns: 1fr; gap: 2rem; }
  .cards-3, .steps, .reviews { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 767px) {
  :root { --pad-x: 1.25rem; }
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: flex; }
  .hero { padding: 7rem 0 2.5rem; }
  .page-hero { padding: 7rem 0 2rem; }
  .section { padding: 4rem 0; }
  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .hero-sub { font-size: 1.08rem; }
  .hero-frame { border-radius: 1.75rem 1.75rem 1.75rem 3rem; aspect-ratio: 5/5; }
  .rating-badge { left: 0.75rem; bottom: 0.9rem; padding: 0.8rem 1rem; }
  .rating-num { font-size: 2rem; }
  .price-row { grid-template-columns: 1fr auto; padding: 1.2rem 1.3rem; gap: 0.5rem 1rem; }
  .price-dur { grid-column: 1; font-size: 0.88rem; }
  .price-val { grid-column: 2; grid-row: 1 / 3; align-self: center; }
  .price-row.head { display: none; }
  .includes { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust-sep { display: none; }
  .wa-float { width: 58px; height: 58px; bottom: 1rem; right: 1rem; }
}

/* zona segura para botón flotante */
@media (max-width: 767px) {
  body { padding-bottom: env(safe-area-inset-bottom); }
  .footer { padding-bottom: 5.5rem; }
}
