/* ============================================================
   VILLA REAL · AGUAYTÍA — Landing Page
   Design system: "Confianza premium con alma de selva"
   Navy (trust) + Gold (value) + Selva green, on warm off-white.
   ============================================================ */

:root {
  /* brand ink + neutrals (warm) */
  --ink:        #0e2233;
  --ink-2:      #2a4257;
  --muted:      #5f7585;
  --muted-2:    #8295a2;
  --line:       rgba(14, 34, 51, 0.12);
  --line-soft:  rgba(14, 34, 51, 0.07);
  --bg:         #f5f1e9;
  --bg-2:       #efe9dd;
  --card:       #ffffff;

  /* navy surfaces */
  --navy:       #0b2235;
  --navy-2:     #0f2c43;
  --navy-deep:  #07182632;

  /* brand accents */
  --gold:       #c39a3d;
  --gold-2:     #e3c374;
  --gold-deep:  #9c7826;
  --green:      #2c8a5d;
  --green-2:    #3aa971;
  --red:        #c0392b;
  --red-2:      #e04b3a;

  /* themable accent (controlled by [data-accent]) */
  --accent:      var(--gold);
  --accent-2:    var(--gold-2);
  --accent-deep: var(--gold-deep);
  --accent-ink:  #1c1404;            /* text on accent fill */
  --on-accent:   #1c1404;

  --radius:     18px;
  --radius-sm:  12px;
  --radius-lg:  26px;
  --shadow:     0 1px 2px rgba(14,34,51,.05), 0 18px 44px -22px rgba(14,34,51,.30);
  --shadow-lg:  0 40px 90px -40px rgba(11,34,53,.55);
  --maxw:       1200px;
  --ease:       cubic-bezier(.22,.61,.36,1);

  --ff-display: "Sora", system-ui, sans-serif;
  --ff-body:    "Manrope", system-ui, sans-serif;
  --ff-serif:   "Newsreader", Georgia, serif;
}

/* accent themes */
[data-accent="green"] {
  --accent: var(--green); --accent-2: var(--green-2); --accent-deep: #1f6b46;
  --accent-ink: #ffffff; --on-accent: #ffffff;
}
[data-accent="red"] {
  --accent: #b53a2c; --accent-2: var(--red-2); --accent-deep: #8a271c;
  --accent-ink: #ffffff; --on-accent: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(64px, 9vw, 132px) 0; }
.eyebrow {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--accent);
  display: inline-block; border-radius: 2px;
}
.eyebrow.center::before { display: none; }
h1, h2, h3 { font-family: var(--ff-display); font-weight: 700; line-height: 1.04; letter-spacing: -.02em; color: var(--ink); }
.h2 { font-size: clamp(30px, 4.4vw, 52px); }
.lead { font-size: clamp(17px, 1.7vw, 20px); color: var(--ink-2); max-width: 60ch; text-wrap: pretty; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  font-family: var(--ff-display); font-weight: 600; font-size: 16px;
  padding: 16px 26px; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: var(--on-accent);
  box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 14px 30px -12px color-mix(in srgb, var(--accent) 70%, transparent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 22px 40px -14px color-mix(in srgb, var(--accent) 75%, transparent); }
.btn-wa { background: #1faf54; color: #fff; box-shadow: 0 14px 30px -14px rgba(31,175,84,.75); }
.btn-wa:hover { background: #18a44c; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn-lg { padding: 19px 32px; font-size: 17px; }
.btn-block { width: 100%; }

/* ---------- chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  padding: 9px 14px 9px 12px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--line);
}
.chip svg { width: 16px; height: 16px; color: var(--accent-deep); }
.chip.on-dark { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color: rgba(255,255,255,.92); }
.chip.on-dark svg { color: var(--gold-2); }

/* ============================================================
   LOADING SCREEN
   ============================================================ */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  background:
    radial-gradient(130% 100% at 50% 8%, #ffffff 0%, #f6f2ec 52%, #ece4d6 100%);
  color: var(--ink);
  transition: opacity .7s var(--ease), visibility .7s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader__blueprint {
  position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(14,34,51,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,34,51,.10) 1px, transparent 1px),
    linear-gradient(rgba(14,34,51,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,34,51,.05) 1px, transparent 1px);
  background-size: 132px 132px, 132px 132px, 33px 33px, 33px 33px;
  -webkit-mask-image: radial-gradient(circle at 50% 44%, #000 0%, transparent 78%);
          mask-image: radial-gradient(circle at 50% 44%, #000 0%, transparent 78%);
}
.loader__inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 26px; padding: 0 24px; text-align: center; width: 100%; max-width: 540px; }
.loader__logo {
  position: relative;
  width: clamp(150px, 34vw, 188px); height: clamp(150px, 34vw, 188px); border-radius: 50%;
  background: #fff;
  display: grid; place-items: center; padding: 10px;
  box-shadow: 0 22px 55px -20px rgba(14,34,51,.4);
  animation: logoPulse 2.6s var(--ease) infinite;
}
/* brand gradient ring (rosa → morado) */
.loader__logo::before {
  content: ""; position: absolute; inset: -7px; border-radius: 50%; z-index: -1;
  background: conic-gradient(from 210deg, #ff5b6e, #c0392b, #e3b81e, #4e9a3e, #3aa6a0, #7d4fd6, #ff5b6e);
  animation: ringSpin 7s linear infinite;
}
.loader__logo img { width: 100%; height: 100%; object-fit: contain; }
@keyframes logoPulse {
  0%, 100% { box-shadow: 0 22px 55px -20px rgba(14,34,51,.4); }
  50%      { box-shadow: 0 0 0 10px rgba(125,79,214,.07), 0 22px 60px -18px rgba(14,34,51,.45); }
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
.loader__brand { display: flex; flex-direction: column; gap: 5px; }
.loader__brand b { font-family: var(--ff-display); font-weight: 700; letter-spacing: .04em; font-size: clamp(15px, 2.4vw, 18px); text-transform: uppercase; color: var(--navy); }
.loader__brand b em { font-style: normal; color: var(--red); }
.loader__brand span { font-size: 11.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }
.loader__skyline { width: min(440px, 86vw); }
.loader__skyline svg { width: 100%; height: auto; overflow: visible; }
.loader__skyline g rect, .loader__skyline g path { filter: drop-shadow(0 6px 10px rgba(14,34,51,.10)); }
.sky-ground { stroke: rgba(14,34,51,.25); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 2 9; }
.loader__bar { width: min(360px, 84vw); height: 6px; border-radius: 999px; background: rgba(14,34,51,.10); overflow: hidden; }
.loader__bar i { display: block; height: 100%; border-radius: inherit; transition: width .2s linear;
  background: linear-gradient(90deg, #ff5b6e, #c0392b 30%, #e3b81e 55%, #4e9a3e 78%, #7d4fd6); }
.loader__meta { display: flex; align-items: center; gap: 12px; min-height: 22px; }
.loader__pct { font-family: var(--ff-display); font-weight: 800; font-size: 16px; color: var(--navy); }
.loader__msg { font-size: 13.5px; color: var(--ink-2); letter-spacing: .01em; transition: opacity .3s; }
.loader__msg b { color: var(--red); font-weight: 700; }
@media (max-width: 560px) {
  .loader__meta { flex-direction: column; gap: 4px; }
}

/* ============================================================
   HEADER
   ============================================================ */
.topstrip {
  background: var(--navy); color: #fff;
  font-size: 12.5px; letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 8px 16px; text-align: center;
}
.topstrip b { color: var(--gold-2); font-weight: 700; }
.topstrip .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); display: inline-block; animation: blink 1.4s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }
.topstrip .hidesm { }

.header {
  position: sticky; top: 0; z-index: 60;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(245,241,233,.85);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(14,34,51,.5);
}
.header__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 15px; }
.brand__logo { width: 76px; height: 76px; border-radius: 50%; background: #fff; padding: 4px; box-shadow: 0 6px 22px -8px rgba(14,34,51,.4), 0 0 0 1px var(--line-soft); flex-shrink: 0; transition: width .3s var(--ease), height .3s var(--ease); }
.brand__logo img { width: 100%; height: 100%; object-fit: contain; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.08; }
.brand__txt b { font-family: var(--ff-display); font-weight: 700; font-size: 19px; letter-spacing: .01em; color: var(--ink); }
.brand__txt span { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.header.scrolled .brand__logo { width: 60px; height: 60px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 14.5px; font-weight: 600; color: var(--ink-2); transition: color .2s; position: relative; }
.nav a:hover { color: var(--accent-deep); }
.header__cta { display: flex; align-items: center; gap: 12px; }
.menu-btn { display: none; width: 48px; height: 48px; border-radius: 12px; align-items: center; justify-content: center; color: var(--ink); background: var(--card); border: 1px solid var(--line); transition: background .2s; }
.menu-btn:hover { background: var(--bg-2); }
.menu-btn svg { width: 24px; height: 24px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; color: #fff; isolation: isolate; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroZoom 18s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1.0); } }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,22,40,.82) 0%, rgba(8,26,42,.55) 40%, rgba(8,26,42,.72) 78%, rgba(8,24,40,.95) 100%),
    linear-gradient(95deg, rgba(7,22,40,.86) 0%, rgba(7,22,40,.10) 62%);
}
.hero__in { padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 7vw, 92px); display: grid; gap: 30px; max-width: 940px; }
.hero h1 {
  color: #fff; font-size: clamp(38px, 6.1vw, 76px); line-height: .99; letter-spacing: -.025em;
  text-wrap: balance; text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero h1 .mark { color: var(--gold-2); }
.hero h1 .underline { position: relative; white-space: nowrap; }
.hero__sub { font-size: clamp(17px, 1.9vw, 21px); color: rgba(255,255,255,.9); max-width: 60ch; text-wrap: pretty; }
.hero__sub b { color: #fff; }
.hero__free {
  display: inline-flex; align-items: center; gap: 13px; align-self: flex-start;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1c1404; border-radius: 14px; padding: 12px 18px; font-weight: 700;
  box-shadow: 0 18px 38px -18px rgba(195,154,61,.8);
}
.hero__free svg { width: 26px; height: 26px; }
.hero__free small { display: block; font-weight: 600; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; opacity: .72; }
.hero__free b { font-family: var(--ff-display); font-size: 16px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__chips { margin-top: 6px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 36px; margin-top: 8px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.16); }
.hstat b { font-family: var(--ff-display); font-weight: 700; font-size: clamp(26px, 3vw, 34px); color: #fff; display: block; line-height: 1; }
.hstat b em { font-style: normal; color: var(--gold-2); }
.hstat span { font-size: 13px; color: rgba(255,255,255,.7); letter-spacing: .02em; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust { background: var(--navy); color: #fff; }
.trust__in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px 40px; padding: 26px 0; }
.trust__item { display: flex; align-items: center; gap: 13px; }
.trust__item .ic { width: 42px; height: 42px; border-radius: 11px; background: rgba(227,195,116,.13); display: grid; place-items: center; color: var(--gold-2); flex-shrink: 0; }
.trust__item .ic svg { width: 22px; height: 22px; }
.trust__item b { font-family: var(--ff-display); font-weight: 600; font-size: 14.5px; display: block; }
.trust__item span { font-size: 12.5px; color: rgba(255,255,255,.6); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--bg); position: relative; }
.pricing__head { text-align: center; display: grid; gap: 16px; justify-items: center; margin-bottom: 50px; }
.pricing__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; align-items: stretch; }
.price-card {
  position: relative; background: var(--navy);
  border-radius: var(--radius-lg); padding: 40px; color: #fff; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.price-card__glow { position: absolute; width: 360px; height: 360px; right: -120px; top: -120px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 40%, transparent), transparent 70%); }
.price-card__tag {
  position: absolute; top: 24px; right: 24px; background: var(--red); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px; box-shadow: 0 10px 24px -12px rgba(192,57,43,.8);
}
.price-card .lotsize { display: inline-flex; align-items: baseline; gap: 8px; font-family: var(--ff-display); font-weight: 700; }
.price-card .lotsize b { font-size: 34px; color: var(--gold-2); }
.price-card .lotsize span { font-size: 15px; color: rgba(255,255,255,.7); }
.seg { display: inline-flex; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 4px; margin: 24px 0 6px; }
.seg button { padding: 9px 20px; border-radius: 999px; font-weight: 600; font-size: 14px; color: rgba(255,255,255,.7); transition: all .2s; }
.seg button.active { background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #1c1404; box-shadow: 0 8px 18px -10px rgba(195,154,61,.9); }
.price-amount { display: flex; align-items: flex-end; gap: 12px; margin: 22px 0 4px; }
.price-amount .cur { font-family: var(--ff-display); font-weight: 600; font-size: 22px; color: rgba(255,255,255,.65); padding-bottom: 8px; }
.price-amount .num { font-family: var(--ff-display); font-weight: 800; font-size: clamp(50px, 8vw, 76px); line-height: .9; letter-spacing: -.03em; }
.price-amount .per { font-size: 15px; color: rgba(255,255,255,.6); padding-bottom: 10px; }
.price-credit { display: flex; gap: 13px; align-items: flex-start; margin-top: 20px; padding: 16px 18px;
  border-radius: var(--radius-sm); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.price-credit__ic { width: 38px; height: 38px; flex-shrink: 0; border-radius: 11px; display: grid; place-items: center;
  background: rgba(227,195,116,.16); color: var(--gold-2); }
.price-credit__ic svg { width: 20px; height: 20px; }
.price-credit b { font-family: var(--ff-display); font-weight: 600; font-size: 14.5px; display: block; color: #fff; }
.price-credit > span > span { font-size: 13px; color: rgba(255,255,255,.72); }
.price-note { font-size: 14.5px; color: rgba(255,255,255,.72); }
.price-note b { color: var(--gold-2); }
.price-card .btn { margin-top: 26px; }
.price-list { background: var(--card); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); border: 1px solid var(--line-soft); display: flex; flex-direction: column; }
.price-list h3 { font-size: 21px; margin-bottom: 8px; }
.price-list p.sub { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.feat { display: flex; gap: 14px; padding: 15px 0; border-top: 1px solid var(--line-soft); }
.feat:first-of-type { border-top: none; }
.feat .tick { width: 26px; height: 26px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 16%, white); color: var(--accent-deep); display: grid; place-items: center; flex-shrink: 0; }
.feat .tick svg { width: 15px; height: 15px; }
.feat b { font-family: var(--ff-display); font-weight: 600; font-size: 15px; display: block; }
.feat span { font-size: 13.5px; color: var(--muted); }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits { background: var(--bg-2); }
.benefits__head { display: grid; gap: 16px; max-width: 720px; margin-bottom: 48px; }
.bcards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.bcard {
  background: var(--card); border-radius: var(--radius); padding: 30px 26px;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.bcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bcard__ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--navy-2), var(--navy)); color: var(--gold-2); }
.bcard__ic svg { width: 26px; height: 26px; }
.bcard__n { font-family: var(--ff-display); font-weight: 700; font-size: 13px; color: var(--accent-deep); letter-spacing: .04em; }
.bcard h3 { font-size: 19px; line-height: 1.15; }
.bcard p { font-size: 14.5px; color: var(--muted); text-wrap: pretty; }

/* ============================================================
   LOCATION
   ============================================================ */
.location { background: var(--navy); color: #fff; overflow: hidden; }
.location__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: center; }
.location h2 { color: #fff; }
.location .lead { color: rgba(255,255,255,.82); }
.location .eyebrow { color: var(--gold-2); }
.location .eyebrow::before { background: var(--gold-2); }
.loc-points { display: grid; gap: 18px; margin-top: 8px; }
.loc-point { display: flex; gap: 15px; align-items: flex-start; }
.loc-point .ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(227,195,116,.14); color: var(--gold-2); display: grid; place-items: center; flex-shrink: 0; }
.loc-point .ic svg { width: 20px; height: 20px; }
.loc-point b { font-family: var(--ff-display); font-weight: 600; font-size: 16px; display: block; }
.loc-point span { font-size: 14px; color: rgba(255,255,255,.65); }
.loc-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.12); }
.loc-map img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.loc-map__cap { position: absolute; left: 16px; bottom: 16px; right: 16px; display: flex; align-items: center; gap: 10px;
  background: rgba(7,22,40,.7); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px; padding: 11px 14px; font-size: 13px; }
.loc-map__cap svg { width: 17px; height: 17px; color: var(--gold-2); flex-shrink: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--bg); }
.gallery__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.gallery__head .eyebrow { margin-bottom: 14px; }

/* ---- big carousel ---- */
.carousel { display: grid; gap: 18px; }
.carousel__stage {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--navy); box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9; touch-action: pan-y;
}
.carousel__track { display: flex; height: 100%; transition: transform .6s var(--ease); will-change: transform; }
.cslide { position: relative; min-width: 100%; height: 100%; margin: 0; }
.cslide img { width: 100%; height: 100%; object-fit: cover; user-select: none; }
.cslide__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  padding: 64px 26px 24px; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(7,22,40,.86));
}
.cslide__pin { width: 40px; height: 40px; flex-shrink: 0; border-radius: 12px;
  background: rgba(227,195,116,.18); border: 1px solid rgba(227,195,116,.4);
  display: grid; place-items: center; color: var(--gold-2); }
.cslide__pin svg { width: 20px; height: 20px; }
.cslide__cap b { font-family: var(--ff-display); font-weight: 700; font-size: clamp(17px, 2.4vw, 23px); display: block; line-height: 1.1; }
.cslide__cap > span > span { font-size: clamp(13px, 1.6vw, 15px); color: rgba(255,255,255,.78); }

.carousel__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--navy);
  display: grid; place-items: center; box-shadow: 0 12px 30px -12px rgba(0,0,0,.5);
  transition: background .2s, transform .2s;
}
.carousel__nav svg { width: 24px; height: 24px; }
.carousel__nav.prev { left: 18px; } .carousel__nav.next { right: 18px; }
.carousel__nav:hover { background: #fff; transform: translateY(-50%) scale(1.07); }
.carousel__counter {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  background: rgba(7,22,40,.6); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.18);
  color: #fff; font-family: var(--ff-display); font-weight: 600; font-size: 13px;
  padding: 7px 13px; border-radius: 999px;
}

.carousel__thumbs { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 12px; }
.cthumb { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 16/10; cursor: pointer;
  border: 2px solid transparent; opacity: .55; transition: opacity .25s, border-color .25s, transform .25s; background: var(--navy); }
.cthumb img { width: 100%; height: 100%; object-fit: cover; }
.cthumb:hover { opacity: .85; transform: translateY(-2px); }
.cthumb.active { opacity: 1; border-color: var(--accent); box-shadow: 0 8px 20px -10px color-mix(in srgb, var(--accent) 70%, transparent); }

.carousel__dots { display: none; justify-content: center; gap: 9px; }
.cdot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); transition: all .25s; cursor: pointer; }
.cdot.active { background: var(--accent); width: 26px; border-radius: 999px; }

/* ============================================================
   LOGISTICS (Todo incluido)
   ============================================================ */
.logistics { background: var(--bg-2); position: relative; }
.logistics__head { text-align: center; display: grid; gap: 16px; justify-items: center; margin-bottom: 56px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.steps::before { content: ""; position: absolute; top: 38px; left: 16%; right: 16%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 9px, transparent 9px 18px); opacity: .4; }
.step { position: relative; background: var(--card); border-radius: var(--radius); padding: 32px 28px; border: 1px solid var(--line-soft); box-shadow: var(--shadow); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.step__num { width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; position: relative;
  background: linear-gradient(160deg, var(--navy-2), var(--navy)); color: #fff; box-shadow: 0 14px 30px -14px rgba(11,34,53,.7); }
.step__num svg { width: 32px; height: 32px; color: var(--gold-2); }
.step__num i { position: absolute; bottom: -6px; right: -6px; width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-2), var(--gold)); color: #1c1404; display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 14px; font-style: normal; box-shadow: var(--shadow); }
.step h3 { font-size: 19px; }
.step p { font-size: 14.5px; color: var(--muted); text-wrap: pretty; }
.logistics__note { margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center;
  font-size: 14.5px; color: var(--ink-2); }
.logistics__note b { color: var(--accent-deep); }

/* ============================================================
   LEAD FORM
   ============================================================ */
.cta { position: relative; color: #fff; overflow: hidden; isolation: isolate; }
.cta__bg { position: absolute; inset: 0; z-index: -2; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(110deg, rgba(7,20,36,.95) 0%, rgba(8,26,42,.82) 50%, rgba(8,26,42,.7) 100%); }
.cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cta__copy { display: grid; gap: 22px; }
.cta__copy h2 { color: #fff; font-size: clamp(32px, 4.6vw, 54px); }
.cta__copy h2 .mark { color: var(--gold-2); }
.cta__copy .lead { color: rgba(255,255,255,.85); }
.counter { display: inline-flex; align-items: center; gap: 14px; background: rgba(192,57,43,.16); border: 1px solid rgba(224,75,58,.4);
  border-radius: 14px; padding: 14px 18px; align-self: flex-start; }
.counter__pulse { width: 11px; height: 11px; border-radius: 50%; background: var(--red-2); box-shadow: 0 0 0 0 rgba(224,75,58,.6); animation: pulseRed 1.8s infinite; flex-shrink: 0; }
@keyframes pulseRed { 0%{box-shadow:0 0 0 0 rgba(224,75,58,.55)} 70%{box-shadow:0 0 0 14px rgba(224,75,58,0)} 100%{box-shadow:0 0 0 0 rgba(224,75,58,0)} }
.counter b { font-family: var(--ff-display); font-weight: 700; font-size: 17px; }
.counter b em { font-style: normal; color: var(--gold-2); }
.counter span { display: block; font-size: 12.5px; color: rgba(255,255,255,.7); }
.cta__trust { display: flex; flex-direction: column; gap: 10px; }
.cta__trust div { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.86); }
.cta__trust svg { width: 18px; height: 18px; color: var(--gold-2); flex-shrink: 0; }

.formcard { background: var(--card); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg); color: var(--ink); }
.formcard h3 { font-size: 23px; margin-bottom: 4px; }
.formcard .sub { font-size: 14.5px; color: var(--muted); margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.field label .req { color: var(--red); }
.field input, .field select {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 14px 15px; border-radius: 12px; border: 1.5px solid var(--line);
  background: #fbfaf7; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent); }
.field.err input, .field.err select { border-color: var(--red); }
.field .msg { font-size: 12.5px; color: var(--red); margin-top: 6px; display: none; }
.field.err .msg { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.payseg { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.payseg label {
  display: flex; align-items: center; gap: 10px; padding: 13px 14px; border-radius: 12px;
  border: 1.5px solid var(--line); background: #fbfaf7; cursor: pointer; font-size: 14.5px; font-weight: 600;
  transition: all .2s; margin: 0;
}
.payseg label:hover { border-color: var(--accent); }
.payseg input { display: none; }
.payseg label .dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--line); display: grid; place-items: center; flex-shrink: 0; transition: all .2s; }
.payseg input:checked + .lab { color: var(--accent-deep); }
.payseg label.sel { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 9%, white); }
.payseg label.sel .dot { border-color: var(--accent); }
.payseg label.sel .dot::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.form-foot { font-size: 12px; color: var(--muted-2); text-align: center; margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.form-foot svg { width: 14px; height: 14px; }
.form-success { text-align: center; padding: 22px 8px; }
.form-success .ok { width: 72px; height: 72px; border-radius: 50%; background: color-mix(in srgb, var(--green) 14%, white); color: var(--green); display: grid; place-items: center; margin: 0 auto 18px; animation: popIn .5s var(--ease); }
.form-success .ok svg { width: 36px; height: 36px; }
@keyframes popIn { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-2); color: rgba(255,255,255,.7); padding: 60px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand { display: flex; gap: 14px; align-items: flex-start; }
.footer__brand .brand__logo { width: 84px; height: 84px; }
.footer__brand b { color: #fff; font-family: var(--ff-display); font-size: 16px; display: block; }
.footer__brand p { font-size: 13.5px; margin-top: 8px; max-width: 36ch; }
.footer h4 { color: #fff; font-family: var(--ff-display); font-size: 14px; letter-spacing: .04em; margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a, .footer ul li { font-size: 14px; transition: color .2s; display: flex; align-items: center; gap: 9px; }
.footer ul a:hover { color: var(--gold-2); }
.footer ul svg { width: 16px; height: 16px; color: var(--gold-2); flex-shrink: 0; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 24px; font-size: 12.5px; flex-wrap: wrap; }

/* floating whatsapp */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 70; display: grid; place-items: center;
  width: 62px; height: 62px; background: #1faf54; color: #fff; border-radius: 50%;
  box-shadow: 0 20px 44px -18px rgba(31,175,84,.85); transition: transform .25s var(--ease); }
.fab:hover { transform: translateY(-3px) scale(1.05); }
.fab svg { width: 32px; height: 32px; }
@keyframes fabBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
.fab.bob { animation: fabBob 2.6s ease-in-out infinite; }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .bcards { grid-template-columns: repeat(2, 1fr); }
  .location__grid { grid-template-columns: 1fr; gap: 36px; }
  .cta__grid { grid-template-columns: 1fr; gap: 36px; }
  .nav { display: none; }
  .menu-btn { display: flex; }
  .header__cta .btn span.hidesm { display: none; }
  .brand__logo { width: 64px; height: 64px; }
  .header.scrolled .brand__logo { width: 54px; height: 54px; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 18px; }
  .header__cta .btn span.hidesm { display: none; }
  .menu-btn { display: flex; }
  .brand__txt b { font-size: 17px; }
  .brand__logo { width: 58px; height: 58px; }
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__stats { gap: 22px; }
  .field-row { grid-template-columns: 1fr; }
  .trust__in { gap: 18px; }
  .trust__item { width: calc(50% - 20px); }
  .topstrip .hidesm { display: none; }
  .carousel__thumbs { display: none; }
  .carousel__dots { display: flex; }
  .carousel__nav { width: 44px; height: 44px; }
  .carousel__nav svg { width: 20px; height: 20px; }
  .carousel__nav.prev { left: 10px; } .carousel__nav.next { right: 10px; }
  .cslide__cap { padding: 50px 18px 18px; gap: 11px; }
}
@media (max-width: 560px) {
  .brand__txt span { display: none; }
  .hero__free { padding: 11px 14px; gap: 10px; }
  .hero__free b { font-size: 14.5px; }
  .hero__actions .btn { width: 100%; }
  .price-card, .price-list, .formcard { padding: 26px 22px; }
  .trust__item { width: 100%; }
  .gallery__head { gap: 14px; }
}
@media (max-width: 480px) {
  .bcards { grid-template-columns: 1fr; }
  .carousel__stage { aspect-ratio: 4 / 3; }
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .12s !important; }
  .reveal { opacity: 1; transform: none; }
}
