@import url("../fonts/fonts.css");

/* ==========================================================================
   Fraccionamiento Gardenias — Casa Dalia
   Dirección de diseño C3. Tokens en PLAN-LANDING.md §5.
   ========================================================================== */

:root {
  --sage:        #5C6852;
  --sage-deep:   #2C3326;
  --sage-bright: #8CA077;
  --amber:       #E8B04B;
  --ink:         #15180F;
  --paper:       #FAFAF7;

  --bar:         #20281A;
  --footer:      #1A2116;

  --line:        rgba(255, 255, 255, .18);
  --line-d:      #E4E6DE;
  --muted:       #5F6659;
  --muted-d:     rgba(255, 255, 255, .68);

  --pad:         clamp(20px, 5vw, 56px);
  --radius:      10px;

  --sans:  "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Bricolage Grotesque", var(--sans);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 72px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--sage-deep);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

h1, h2, h3, .display { font-family: var(--display); letter-spacing: -.03em; font-weight: 700; line-height: 1.06; }

:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 3px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: var(--pad); top: -100px; z-index: 100;
  background: var(--amber); color: #241C05; padding: 12px 20px;
  border-radius: 8px; font-weight: 700;
}
.skip-link:focus { top: 12px; }

/* ---------- Layout helpers ---------- */
.wrap { padding-inline: var(--pad); }
.container { max-width: 1240px; margin-inline: auto; }

section { scroll-margin-top: 72px; }

.section { padding-block: clamp(56px, 8vw, 96px); }
.section--paper { background: var(--paper); color: var(--ink); }
.section--deep  { background: var(--sage-deep); color: #fff; }
.section--bar   { background: var(--bar); color: #fff; }

.kicker {
  font-size: 12.5px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: 12px;
}
.section--paper .kicker { color: var(--sage); }
.section--deep .kicker, .section--bar .kicker { color: var(--sage-bright); }

.section-title { font-size: clamp(30px, 4.4vw, 44px); }
.section-lead {
  font-size: clamp(15.5px, 1.6vw, 17px); margin-top: 14px; max-width: 62ch;
}
.section--paper .section-lead { color: var(--muted); }
.section--deep .section-lead, .section--bar .section-lead { color: var(--muted-d); }

.section-head { margin-bottom: clamp(28px, 4vw, 44px); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 28px; border-radius: 8px;
  font-size: 15.5px; font-weight: 700; line-height: 1.2;
  text-align: center; white-space: nowrap;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--amber); color: #241C05; }
.btn--primary:hover { background: #F1BE60; }
.btn--ghost { border: 1.5px solid rgba(255, 255, 255, .4); color: #fff; }
.btn--ghost:hover { border-color: #fff; }
.btn--sage { background: var(--sage); color: #fff; }
.btn--sage:hover { background: #6B7860; }
.btn--outline-ink { border: 1.5px solid rgba(21, 24, 15, .3); color: var(--ink); }
.btn--outline-ink:hover { border-color: var(--ink); }
.btn--block { display: flex; width: 100%; }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 16px var(--pad);
  transition: background-color .25s ease, box-shadow .25s ease, padding .25s ease;
}
.nav.is-stuck {
  background: rgba(28, 34, 22, .94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 11px;
}
.nav__logo img { height: 32px; width: auto; }
.nav__links { display: flex; gap: 28px; font-size: 14.5px; font-weight: 500; color: rgba(255, 255, 255, .92); }
.nav__links a:hover { color: var(--sage-bright); }
.nav__wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .14); backdrop-filter: blur(6px);
  border: 1px solid var(--line); color: #fff;
  padding: 10px 20px; border-radius: 100px; font-size: 14.5px; font-weight: 600;
}
.nav__wa:hover { background: rgba(255, 255, 255, .22); }
.nav__toggle { display: none; }

@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; inset: 100% 0 auto 0;
    background: rgba(28, 34, 22, .98); backdrop-filter: blur(10px);
    padding: 8px var(--pad) 20px;
  }
  .nav__links.is-open a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav__toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 8px;
    border: 1px solid var(--line); background: rgba(255, 255, 255, .12);
  }
  .nav__toggle span { display: block; width: 18px; height: 2px; background: #fff; position: relative; }
  .nav__toggle span::before, .nav__toggle span::after {
    content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: #fff;
  }
  .nav__toggle span::before { top: -6px; }
  .nav__toggle span::after  { top: 6px; }
  .nav__wa span { display: none; }
  .nav__wa { padding: 10px 16px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: clamp(520px, 82vh, 700px);
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(24, 30, 18, .62) 0%, rgba(24, 30, 18, .12) 30%,
    rgba(24, 30, 18, .55) 68%, rgba(24, 30, 18, .94) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding: 0 var(--pad) clamp(36px, 5vw, 52px); }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(232, 176, 75, .18); border: 1px solid rgba(232, 176, 75, .55);
  color: #F8DFA6; padding: 9px 16px; border-radius: 100px;
  font-size: 13.5px; font-weight: 700; margin-bottom: 20px;
}
.hero__badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(232, 176, 75, .25); }
.hero h1 {
  font-size: clamp(38px, 6.4vw, 74px); line-height: .95; font-weight: 800;
  letter-spacing: -.04em; max-width: 16ch;
  text-shadow: 0 2px 34px rgba(0, 0, 0, .4);
}
.hero h1 em { font-style: normal; color: #C9D9B4; }
.hero__sub { font-size: clamp(16px, 1.9vw, 18.5px); color: rgba(255, 255, 255, .92); margin-top: 18px; max-width: 46ch; }
.hero__note { font-size: 12.5px; color: rgba(255, 255, 255, .6); margin-top: 14px; }

/* ---------- Franja de datos ---------- */
.factbar {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px;
  padding: 24px var(--pad); background: var(--bar); border-top: 1px solid var(--line);
}
.factbar__price small {
  display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255, 255, 255, .58); margin-bottom: 2px;
}
.factbar__price b { font-family: var(--display); font-size: clamp(26px, 3.2vw, 34px); font-weight: 700; letter-spacing: -.03em; }
.factbar__facts { display: flex; flex-wrap: wrap; gap: 12px 34px; justify-content: center; }
.factbar__facts div { text-align: center; }
.factbar__facts b { display: block; font-family: var(--display); font-size: 20px; font-weight: 700; }
.factbar__facts span { font-size: 13px; color: rgba(255, 255, 255, .62); }
.factbar__acts { display: flex; gap: 12px; }
.creditbar { padding: 14px var(--pad); background: var(--footer); font-size: 14px; color: rgba(255, 255, 255, .64); }
.creditbar strong { color: #fff; font-weight: 700; }

@media (max-width: 1080px) {
  .factbar { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .factbar__price { text-align: center; }
  .factbar__acts { justify-content: center; flex-wrap: wrap; }
  .creditbar { text-align: center; }
}

/* ==========================================================================
   La casa
   ========================================================================== */
.casa__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .casa__grid { grid-template-columns: 1fr; } }

.spec-list { list-style: none; margin-top: 8px; }
.spec-list li {
  display: flex; gap: 14px; align-items: baseline;
  padding: 15px 0; border-bottom: 1px solid var(--line-d);
  font-size: 16px;
}
.spec-list li b { font-family: var(--display); font-size: 14px; color: var(--sage); min-width: 26px; font-weight: 700; }
.spec-list li span { color: var(--muted); font-size: 14.5px; }

.ficha { margin-top: 28px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-d); border: 1px solid var(--line-d); border-radius: var(--radius); overflow: hidden; }
.ficha div { background: var(--paper); padding: 18px 20px; }
.ficha dt { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.ficha dd { font-family: var(--display); font-size: 19px; font-weight: 700; }

/* Plano esquemático */
.plano { background: #fff; border: 1px solid var(--line-d); border-radius: var(--radius); padding: 22px; }
.plano svg { width: 100%; height: auto; }
.plano__note {
  margin-top: 14px; font-size: 13px; line-height: 1.5; color: var(--muted);
  border-left: 3px solid var(--amber); padding-left: 12px;
}

/* ==========================================================================
   Galería
   ========================================================================== */
.gal { background: var(--paper); color: var(--ink); padding-block: clamp(56px, 8vw, 96px) 0; }
.gal__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.gal__head p { font-size: 15.5px; color: var(--muted); max-width: 36ch; text-align: right; }
@media (max-width: 780px) { .gal__head { flex-direction: column; align-items: flex-start; } .gal__head p { text-align: left; } }

.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(150px, 17vw, 236px); gap: 6px; }
.mosaic button { position: relative; overflow: hidden; background: #E4E6DE; padding: 0; display: block; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.mosaic button:hover img { transform: scale(1.035); }
.mosaic .w2 { grid-column: span 2; }
.mosaic .h2 { grid-row: span 2; }
.cap {
  position: absolute; left: 12px; bottom: 10px; z-index: 2;
  background: rgba(20, 24, 15, .74); backdrop-filter: blur(4px); color: #fff;
  font-size: 12px; font-weight: 600; padding: 6px 11px; border-radius: 5px;
  text-align: left; max-width: calc(100% - 24px);
}
@media (max-width: 780px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .mosaic .w2 { grid-column: span 2; }
  .mosaic .h2 { grid-row: span 1; }
}

/* Lightbox */
.lb {
  position: fixed; inset: 0; z-index: 90; display: none;
  background: rgba(12, 16, 9, .95); padding: clamp(16px, 4vw, 48px);
  align-items: center; justify-content: center;
}
.lb[open], .lb.is-open { display: flex; }
.lb__img { max-width: min(1200px, 100%); max-height: 78vh; width: auto; object-fit: contain; border-radius: 6px; }
.lb__fig { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lb__cap { color: rgba(255, 255, 255, .82); font-size: 14.5px; text-align: center; }
.lb__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255, 255, 255, .14); border: 1px solid var(--line); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.lb__btn:hover { background: rgba(255, 255, 255, .26); }
.lb__prev { left: clamp(8px, 2vw, 28px); }
.lb__next { right: clamp(8px, 2vw, 28px); }
.lb__close { position: absolute; top: clamp(12px, 3vw, 28px); right: clamp(12px, 3vw, 28px); transform: none; }

/* ==========================================================================
   Precio y créditos
   ========================================================================== */
.precio__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 820px) { .precio__grid { grid-template-columns: 1fr; } }

.pcard {
  background: rgba(255, 255, 255, .05); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(24px, 3vw, 34px);
}
.pcard__label { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-bright); }
.pcard__price { font-family: var(--display); font-size: clamp(34px, 4.6vw, 46px); font-weight: 800; letter-spacing: -.035em; margin: 8px 0 4px; }
.pcard__price small { font-family: var(--sans); font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, .6); letter-spacing: 0; }
.pcard ul { list-style: none; margin-top: 18px; }
.pcard li { padding: 11px 0; border-top: 1px solid var(--line); font-size: 15.5px; color: rgba(255, 255, 255, .88); }
.pcard li::before { content: "·"; color: var(--sage-bright); font-weight: 700; margin-right: 10px; }

.callout {
  margin-top: 26px; display: flex; gap: 14px; align-items: flex-start;
  background: rgba(232, 176, 75, .1); border: 1px solid rgba(232, 176, 75, .35);
  border-radius: var(--radius); padding: 18px 22px; font-size: 15px; color: #F3E3C2;
}
.callout b { color: #fff; }
.finenote { margin-top: 18px; font-size: 13px; color: rgba(255, 255, 255, .55); }
.section--paper .finenote { color: var(--muted); }

/* ==========================================================================
   Disponibilidad
   ========================================================================== */
.disp__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 820px) { .disp__grid { grid-template-columns: 1fr; } }
.dcard { border: 1px solid var(--line-d); border-radius: var(--radius); padding: clamp(24px, 3vw, 34px); background: #fff; }
.dcard--now { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(232, 176, 75, .18); }
.dcard__tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 100px; margin-bottom: 14px;
}
.dcard--now .dcard__tag { background: var(--amber); color: #241C05; }
.dcard--pre .dcard__tag { background: #ECEEE7; color: var(--sage); }
.dcard h3 { font-size: clamp(22px, 2.6vw, 28px); }
.dcard p { margin-top: 12px; color: var(--muted); font-size: 15.5px; }
.dcard .btn { margin-top: 22px; }

/* ==========================================================================
   Mapa
   ========================================================================== */
.mapwrap { position: relative; background: var(--sage-deep); }
.maphead { padding: clamp(56px, 7vw, 84px) var(--pad) clamp(26px, 3vw, 34px); }
.mapbox { position: relative; height: clamp(360px, 46vw, 470px); }
.mapbox iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.22) contrast(1.02); }
.mapcard {
  position: absolute; left: var(--pad); top: 50%; transform: translateY(-50%); z-index: 3;
  background: #fff; color: var(--ink); border-radius: 12px;
  padding: 24px 26px; width: min(340px, calc(100% - var(--pad) * 2));
  box-shadow: 0 22px 50px rgba(0, 0, 0, .35);
}
.mapcard h3 { font-size: 21px; margin-bottom: 6px; }
.mapcard p { font-size: 14.5px; color: var(--muted); margin-bottom: 14px; }
.mapcard ul { list-style: none; font-size: 14.5px; }
.mapcard li { padding: 8px 0; border-top: 1px solid var(--line-d); }
.mapcard li b { color: var(--sage); font-weight: 700; }
@media (max-width: 820px) {
  .mapcard { position: static; transform: none; width: auto; margin: -30px var(--pad) 0; }
  .mapwrap { padding-bottom: 40px; }
}

/* ==========================================================================
   Razones — lista editorial
   ========================================================================== */
.razones { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(32px, 5vw, 72px); }
@media (max-width: 820px) { .razones { grid-template-columns: 1fr; } }
.razon { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 26px 0; border-top: 1px solid var(--line-d); }
.razon__num { font-family: var(--display); font-size: 30px; font-weight: 700; color: var(--sage-bright); line-height: 1; letter-spacing: -.04em; }
.razon h3 { font-size: 19px; margin-bottom: 7px; }
.razon p { font-size: 15.5px; color: var(--muted); }

/* ==========================================================================
   Plusvalía
   ========================================================================== */
.plus__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
@media (max-width: 900px) { .plus__grid { grid-template-columns: 1fr; } }

.tabla { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.tabla th, .tabla td { padding: 13px 10px; text-align: left; border-bottom: 1px solid var(--line); }
.tabla th { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .55); font-weight: 700; }
.tabla td:first-child { font-family: var(--display); font-weight: 700; }
.tabla td:last-child { color: var(--sage-bright); font-weight: 600; text-align: right; }
.tabla th:last-child { text-align: right; }
.tabla tr:last-child td { border-bottom: 0; }

.bigstat { font-family: var(--display); font-size: clamp(52px, 8vw, 82px); font-weight: 800; letter-spacing: -.045em; color: var(--amber); line-height: 1; }
.disclaimer {
  margin-top: 22px; font-size: 13.5px; line-height: 1.55; color: rgba(255, 255, 255, .6);
  border-left: 3px solid var(--line); padding-left: 14px;
}

/* ==========================================================================
   Prueba social + nosotros
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-d); border: 1px solid var(--line-d); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 780px) { .stats { grid-template-columns: 1fr; } }
.stats div { background: #fff; padding: clamp(24px, 3vw, 32px); }
.stats b { display: block; font-family: var(--display); font-size: clamp(36px, 5vw, 50px); font-weight: 800; letter-spacing: -.04em; color: var(--sage); line-height: 1; }
.stats span { display: block; margin-top: 10px; font-size: 15px; color: var(--muted); }

.nosotros__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
@media (max-width: 820px) { .nosotros__grid { grid-template-columns: 1fr; } }
.mv { border-top: 3px solid var(--sage); padding-top: 18px; }
.mv h3 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); margin-bottom: 10px; font-family: var(--sans); font-weight: 700; }
.mv p { font-size: 15.5px; color: var(--muted); }
.valores { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.valores span { border: 1px solid var(--line-d); border-radius: 100px; padding: 9px 18px; font-size: 13.5px; font-weight: 600; color: var(--sage); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 860px; }
.faq__item { border-bottom: 1px solid var(--line-d); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  width: 100%; text-align: left; padding: 22px 0;
  font-family: var(--display); font-size: clamp(17px, 2vw, 20px); font-weight: 700; letter-spacing: -.02em;
}
.faq__q i { flex: 0 0 auto; width: 22px; height: 22px; position: relative; }
.faq__q i::before, .faq__q i::after {
  content: ""; position: absolute; background: var(--sage); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.faq__q i::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq__q i::after  { left: 10px; top: 0; width: 2px; height: 22px; }
.faq__q[aria-expanded="true"] i::after { transform: scaleY(0); opacity: 0; }
.faq__a { display: none; padding-bottom: 24px; max-width: 68ch; color: var(--muted); font-size: 15.5px; }
.faq__a.is-open { display: block; }
.faq__a p + p { margin-top: 12px; }

/* ==========================================================================
   Formulario / CTA final
   ========================================================================== */
.cta__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .cta__grid { grid-template-columns: 1fr; } }

.form { background: rgba(255, 255, 255, .05); border: 1px solid var(--line); border-radius: 14px; padding: clamp(24px, 3vw, 34px); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: rgba(255, 255, 255, .88); }
.field .req { color: var(--amber); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 15.5px; color: #fff;
  background: rgba(255, 255, 255, .07); border: 1px solid var(--line);
  border-radius: 8px; padding: 13px 15px;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, .38); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sage-bright); background: rgba(255, 255, 255, .1); }
.field select option { background: var(--bar); color: #fff; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__legal { margin-top: 14px; font-size: 12.5px; color: rgba(255, 255, 255, .58); line-height: 1.5; }
.form__legal a { text-decoration: underline; }
.form__error {
  background: rgba(184, 97, 58, .18); border: 1px solid rgba(184, 97, 58, .55);
  color: #F2C6AE; border-radius: 8px; padding: 13px 16px; font-size: 14.5px; margin-bottom: 18px;
}

.cta__aside h2 { font-size: clamp(30px, 4.4vw, 46px); }
.cta__points { list-style: none; margin-top: 26px; }
.cta__points li { padding: 13px 0; border-top: 1px solid var(--line); font-size: 16px; color: rgba(255, 255, 255, .86); }
.cta__points li b { color: #fff; }
.cta__wa { margin-top: 26px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--footer); padding: clamp(44px, 6vw, 64px) var(--pad) 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr; } }
.footer img { height: 34px; width: auto; margin-bottom: 16px; }
.footer p, .footer li { font-size: 14.5px; color: rgba(255, 255, 255, .62); }
.footer h3 { font-family: var(--sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .45); margin-bottom: 14px; font-weight: 700; }
.footer ul { list-style: none; }
.footer li { padding: 5px 0; }
.footer a:hover { color: #fff; }
.footer__bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  font-size: 13px; color: rgba(255, 255, 255, .45);
}

/* ---------- Botón flotante de WhatsApp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 45;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #06301A; font-weight: 700; font-size: 15px;
  padding: 14px 20px; border-radius: 100px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}
.wa-float svg { width: 20px; height: 20px; flex: 0 0 auto; }
@media (max-width: 620px) { .wa-float span { display: none; } .wa-float { padding: 15px; } }

/* ==========================================================================
   Reveal en scroll.

   El estado base de [data-reveal] es VISIBLE. La animación solo mejora la
   entrada; nunca esconde. Si el JS no corre, falla o llega tarde, la página
   se ve completa igual (ver PLAN-LANDING.md §2 y el incidente del 29-jul,
   donde un opacity:0 en CSS puro dejó el sitio en blanco).
   ========================================================================== */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
[data-reveal].is-in { animation: reveal-up .7s cubic-bezier(.22, 1, .36, 1) both; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal].is-in { animation: none; }
}

/* ==========================================================================
   Páginas de contenido (gracias / aviso de privacidad)
   ========================================================================== */
.page { padding: clamp(110px, 14vh, 160px) var(--pad) clamp(60px, 8vw, 100px); }
.page--center { text-align: center; }
.prose { max-width: 76ch; }
.prose h1 { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 10px; }
.prose h2 { font-size: clamp(20px, 2.4vw, 25px); margin: 40px 0 12px; }
.prose p, .prose li { font-size: 16px; color: rgba(255, 255, 255, .78); line-height: 1.7; }
.prose p + p { margin-top: 14px; }
.prose ul, .prose ol { margin: 12px 0 0 22px; }
.prose li { padding: 4px 0; }
.prose a { text-decoration: underline; }
.prose strong { color: #fff; }
.prose .meta { font-size: 13.5px; color: rgba(255, 255, 255, .5); }

.gracias__icon {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 26px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232, 176, 75, .16); border: 1px solid rgba(232, 176, 75, .5);
}
.gracias__icon svg { width: 34px; height: 34px; stroke: var(--amber); }
.gracias h1 { font-size: clamp(32px, 5vw, 52px); }
.gracias p { margin-top: 16px; font-size: 17px; color: rgba(255, 255, 255, .78); max-width: 52ch; margin-inline: auto; }
.gracias__acts { margin-top: 34px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
