/* ============================================================
   RUMBO NORTE — Sistema de diseño
   Azul marino #0A2777 · Azul eléctrico #085CF0 · Celeste hielo #E4F7FD
   PP Monument Extended (marca/titulares) · Montserrat (texto)
   ============================================================ */

@font-face {
  font-family: "Monument Extended";
  src: url("../fonts/PPMonumentExtended-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Monument Extended";
  src: url("../fonts/PPMonumentExtended-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Monument Extended Light";
  src: url("../fonts/PPMonumentExtended-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0A2777;
  --navy-deep: #071c5c;
  --blue: #085CF0;
  --ice: #E4F7FD;
  --black: #000000;
  --white: #FFFFFF;

  --ink: #0d1526;
  --muted: #5b6b85;
  --muted-on-dark: #aebbdb;
  --border-soft: rgba(10, 39, 119, 0.12);
  --border-on-dark: rgba(255, 255, 255, 0.16);

  --font-display: "Monument Extended", "Arial Black", sans-serif;
  --font-display-light: "Monument Extended Light", "Arial Narrow", sans-serif;
  --font-body: "Montserrat", -apple-system, Segoe UI, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 26px;

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

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--blue);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--ice); }
.eyebrow.on-dark::before { background: var(--ice); }

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: -0.01em;
  font-size: clamp(23px, 3.6vw, 44px);
  margin: 12px 0 0;
}
.section-title .accent { color: var(--blue); }
.section-lede {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 640px;
  margin-top: 18px;
}
.on-dark .section-lede,
.section-lede.on-dark { color: var(--muted-on-dark); }

section { position: relative; }
section[id] { scroll-margin-top: 90px; }
html.qa-flat-hero .hero { min-height: 640px; }
.pad { padding: clamp(64px, 9vw, 128px) 0; }
.pad-sm { padding: clamp(48px, 6vw, 80px) 0; }

.bg-navy { background: var(--navy); color: var(--white); }
.bg-ice { background: var(--ice); }
.bg-white { background: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 30px -8px rgba(8, 92, 240, 0.7);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -8px rgba(8, 92, 240, 0.85); }
.btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.btn-ghost-dark:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -10px rgba(10, 39, 119, 0.6); }
.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.is-scrolled {
  background: rgba(7, 28, 92, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 8px 30px -12px rgba(0,0,0,0.4);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img { height: 30px; width: auto; transition: height 0.4s var(--ease); }
.site-header.is-scrolled .brand img { height: 26px; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1;
}
.brand-word small {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ice);
  opacity: 0.7;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--blue);
  transition: right 0.3s var(--ease);
}
.nav-links a:hover::after { right: 0; }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-cta .btn { padding: 13px 26px; font-size: 12.5px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.1);
  position: relative;
  flex-shrink: 0;
}
.nav-toggle svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.nav-toggle .icon-close { opacity: 0; }
.nav-toggle.is-open .icon-open { opacity: 0; }
.nav-toggle.is-open .icon-close { opacity: 1; }
.nav-toggle svg { transition: opacity 0.2s ease; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,17,46,0.55) 0%, rgba(7,17,46,0.25) 30%, rgba(6,14,38,0.55) 68%, rgba(4,10,28,0.95) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: clamp(120px, 22vw, 200px);
  padding-bottom: 76px;
  color: var(--white);
}
.hero-kicker {
  display: inline-flex;
  flex-wrap: wrap;
  max-width: 100%;
  align-items: center;
  gap: 8px 10px;
  font-size: clamp(10.5px, 2.8vw, 12.5px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ice);
  background: rgba(228, 247, 253, 0.1);
  border: 1px solid rgba(228, 247, 253, 0.3);
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  margin-bottom: 26px;
  box-sizing: border-box;
}
.hero-kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(8,92,240,0.35); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.96;
  font-size: clamp(32px, 7vw, 92px);
  max-width: 15ch;
  overflow-wrap: break-word;
}
@media (max-width: 400px) {
  .hero-title { font-size: 28px; }
}
.hero-title .thin {
  font-family: var(--font-display-light);
  font-weight: 300;
  display: block;
  font-size: 0.42em;
  letter-spacing: 0.02em;
  margin-top: 10px;
  color: var(--ice);
}
.hero-promise {
  margin-top: 26px;
  max-width: 640px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
}
.hero-actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-facts {
  margin-top: 56px;
  display: flex;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 26px;
}
.hero-fact { display: flex; flex-direction: column; gap: 4px; }
.hero-fact b {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 900;
}
.hero-fact span { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-on-dark); }

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 34px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
}
.scroll-cue span { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue .line { width: 1px; height: 46px; background: linear-gradient(180deg, rgba(255,255,255,0.9), transparent); position: relative; overflow: hidden; }
.scroll-cue .line::after {
  content: "";
  position: absolute; left: 0; top: -100%; width: 100%; height: 100%;
  background: var(--blue);
  animation: scrollcue 2.2s ease-in-out infinite;
}
@keyframes scrollcue { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

/* ============================================================
   TRUST BLOCKS (4)
   ============================================================ */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}
.trust-item {
  background: var(--white);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s ease;
}
.trust-item:hover { background: var(--ice); }
.trust-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  flex-shrink: 0;
}
.trust-item h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.trust-item p { font-size: 14px; line-height: 1.55; color: var(--muted); }

.season-panel {
  margin-top: 28px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.season-panel .season-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.season-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.season-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid var(--border-soft);
  border-left: 1px solid var(--border-soft);
}
.season-row:nth-child(-n+3) { border-top: none; }
.season-row:nth-child(3n+1) { border-left: none; }
.season-row .month {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy);
  min-width: 3.2em;
}
.season-row .dates { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

@media (max-width: 640px) {
  .season-grid { grid-template-columns: 1fr; }
  .season-row { border-left: none !important; }
  .season-row:nth-child(-n+3) { border-top: 1px solid var(--border-soft); }
  .season-row:first-child { border-top: none; }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; }
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item.row-2 { grid-row: span 2; border-radius: var(--radius-lg); }
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item.row-2 { grid-row: span 1; aspect-ratio: 1/1; }
  .gallery-item.span-2 { grid-column: span 2; aspect-ratio: 16/10; }
}

/* ============================================================
   VALUE PROP (6)
   ============================================================ */
.value {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.value-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.value-media img { width: 100%; height: 100%; object-fit: cover; }
.value-quote {
  font-family: var(--font-display-light);
  font-weight: 300;
  font-size: clamp(19px, 2.3vw, 28px);
  line-height: 1.35;
  color: var(--white);
  letter-spacing: -0.01em;
}
.value-quote strong { font-family: var(--font-display); font-weight: 900; color: var(--ice); }
.value-body p { margin-top: 22px; font-size: 15.5px; line-height: 1.7; color: var(--muted-on-dark); }

/* ============================================================
   HIGHLIGHTS (7)
   ============================================================ */
.highlights-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.highlights-head > div { min-width: 0; }
.highlight-track {
  margin-top: 54px;
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(6, 1fr);
}
.highlight-card {
  grid-column: span 2;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  color: var(--white);
  isolation: isolate;
}
.highlight-card:nth-child(3n+1) { grid-column: span 3; }
.highlight-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
  z-index: -2;
}
.highlight-card:hover img { transform: scale(1.06); }
.highlight-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,17,46,0.05) 0%, rgba(7,17,46,0.15) 45%, rgba(4,10,28,0.92) 100%);
  z-index: -1;
}
.highlight-num {
  position: absolute; top: 22px; left: 22px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
}
.highlight-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px; }
.highlight-body h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 19px);
  margin-bottom: 8px;
}
.highlight-body p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s ease;
}
.highlight-card:hover .highlight-body p,
.highlight-card:focus-within .highlight-body p,
.highlight-card.is-visible .highlight-body p { max-height: 160px; opacity: 1; }

/* Below ~860px the hover-reveal overlay card doesn't work well with touch
   and fixed-height text — switch to a simple, safe stacked card. */
@media (max-width: 860px) {
  .highlight-card {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    background: var(--navy);
  }
  .highlight-card img {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    z-index: auto;
  }
  .highlight-card::after { display: none; }
  .highlight-num {
    position: static;
    align-self: flex-start;
    margin: 16px 0 0 16px;
  }
  .highlight-body { position: static; padding: 14px 20px 24px; }
  .highlight-body p { max-height: none; opacity: 1; overflow: visible; }
}

/* ============================================================
   ITINERARIO (8)
   ============================================================ */
.itinerary { margin-top: 58px; display: flex; flex-direction: column; gap: 0; }
.itin-day {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--border-soft);
  align-items: start;
}
.itin-day:last-child { border-bottom: 1px solid var(--border-soft); }
.itin-label { display: flex; flex-direction: column; gap: 6px; position: sticky; top: 110px; }
.itin-label .num { font-family: var(--font-display); font-size: 44px; font-weight: 900; color: var(--ice-text, var(--navy)); opacity: 0.18; line-height: 1; }
.itin-label b { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); }
.itin-label .route { font-size: 14px; font-weight: 700; color: var(--navy); margin-top: 2px; line-height: 1.4; }
.itin-events { display: flex; flex-direction: column; gap: 18px; }
.itin-event { display: grid; grid-template-columns: 74px 1fr; gap: 18px; }
.itin-event time { font-weight: 700; font-size: 13px; color: var(--navy); font-variant-numeric: tabular-nums; padding-top: 2px; }
.itin-event p { font-size: 14.5px; line-height: 1.55; color: var(--muted); }

/* ============================================================
   INCLUYE / NO INCLUYE (9)
   ============================================================ */
.includes-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.includes-col { background: var(--white); padding: clamp(28px, 4vw, 46px); }
.includes-col.no { background: #fafbfc; }
.includes-col h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 22px;
}
.includes-col.no h3 { color: var(--muted); }
.includes-col li {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--border-soft);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
}
.includes-col li:first-of-type { border-top: none; }
.includes-col .mark {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  margin-top: 1px;
}
.includes-col.yes .mark { background: var(--blue); color: var(--white); }
.includes-col.no .mark { background: transparent; border: 1.5px solid var(--muted); color: var(--muted); }
.includes-col.no li { color: var(--muted); }

/* ============================================================
   PRECIO + CTA (10)
   ============================================================ */
.price-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(40px, 6vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  color: var(--white);
  isolation: isolate;
}
.price-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.price-panel::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, rgba(7,17,46,0.94) 15%, rgba(7,17,46,0.55) 75%);
}
.price-eyebrow { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ice); font-weight: 700; }
.price-title { font-family: var(--font-display-light); font-weight: 300; font-size: clamp(22px, 3vw, 34px); margin-top: 10px; max-width: 20ch; }
.price-amount { font-family: var(--font-display); font-weight: 900; font-size: clamp(30px, 4.4vw, 54px); margin-top: 14px; letter-spacing: -0.01em; }
.price-amount span { font-family: var(--font-body); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted-on-dark); margin-left: 6px; }
.price-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.price-cta small { font-size: 12.5px; color: var(--muted-on-dark); }
.price-benefits { margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.price-benefits li { display: flex; gap: 10px; font-size: 13px; line-height: 1.45; color: rgba(255,255,255,0.88); }
.price-benefits .mark { flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 10px; margin-top: 1px; }

/* ============================================================
   URGENCIA (11)
   ============================================================ */
.urgency { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 90px); align-items: center; }
.urgency-copy p { margin-top: 18px; font-size: 15.5px; line-height: 1.7; color: var(--muted-on-dark); }
.urgency-copy .cta-line { margin-top: 18px; font-family: var(--font-display-light); font-weight: 300; font-size: clamp(19px, 2.2vw, 24px); color: var(--white); line-height: 1.4; }
.urgency-actions { margin-top: 32px; }
.urgency-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; }
.urgency-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 78%; }
.urgency-badge {
  position: absolute; top: 22px; left: 22px; right: 22px;
  background: var(--blue);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 8px;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
}
.urgency-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--white); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ============================================================
   TESTIMONIOS (12)
   ============================================================ */
.testi-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testi-stars { display: flex; gap: 3px; color: var(--blue); font-size: 14px; }
.testi-card p { font-size: 14.5px; line-height: 1.62; color: var(--ink); flex-grow: 1; }
.testi-name { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 900;
  flex-shrink: 0;
}
.testi-name b { font-size: 13.5px; display: block; }
.testi-name span { font-size: 11.5px; color: var(--muted); }

/* ---------- Autoridad (13) ---------- */
.authority {
  margin-top: 90px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding-top: 90px;
  border-top: 1px solid var(--border-soft);
}
.authority-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; }
.authority-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 61%; }
.authority-stat {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(7,17,46,0.72);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.authority-stat b { font-family: var(--font-display); font-size: 26px; font-weight: 900; }
.authority-stat span { font-size: 12px; color: var(--muted-on-dark); text-transform: uppercase; letter-spacing: 0.04em; }
.authority-body p { margin-top: 20px; font-size: 16px; line-height: 1.75; color: var(--ink); }
.authority-signature { margin-top: 26px; font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: 15px; color: var(--navy); letter-spacing: 0.02em; }

/* ============================================================
   FAQ (14)
   ============================================================ */
.faq-list { margin-top: 50px; max-width: 880px; }
.faq-item { border-top: 1px solid var(--border-soft); }
.faq-list .faq-item:last-child { border-bottom: 1px solid var(--border-soft); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
}
.faq-q .idx { color: var(--blue); font-family: var(--font-display); font-weight: 900; font-size: 13px; margin-right: 14px; }
.faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border-soft);
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  background: var(--navy);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a-inner { padding: 0 4px 26px 41px; font-size: 14.5px; line-height: 1.65; color: var(--muted); max-width: 68ch; }
.faq-item.is-open .faq-a { max-height: 400px; }

.policy-note {
  margin-top: 60px;
  padding: 32px clamp(24px, 4vw, 40px);
  border-radius: var(--radius);
  background: var(--ice);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: flex-start;
}
.policy-note h4 { font-size: 14px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.policy-note p { font-size: 13.5px; line-height: 1.6; color: var(--muted); }
.policy-note p + p { margin-top: 10px; }

/* ---------- Bonus ---------- */
.bonus { margin-top: 26px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bonus-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 26px 22px;
  color: var(--white);
}
.bonus-card .emoji { font-size: 26px; margin-bottom: 14px; display: block; }
.bonus-card p { font-size: 13.5px; line-height: 1.55; color: var(--muted-on-dark); }
.bonus-card b { display: block; color: var(--white); font-size: 14.5px; margin-bottom: 6px; }

.final-cta { text-align: center; margin-top: 50px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-deep); color: var(--white); padding: 70px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.footer-brand img { height: 34px; }
.footer-brand p { margin-top: 18px; font-size: 13.5px; line-height: 1.6; color: var(--muted-on-dark); max-width: 32ch; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); color: var(--white);
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--blue); }
.footer-col h4 { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ice); margin-bottom: 18px; }
.footer-col li { margin-bottom: 11px; font-size: 14px; color: rgba(255,255,255,0.82); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12.5px; color: var(--muted-on-dark); }

/* ---------- WhatsApp floating ---------- */
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.4);
  transition: transform 0.3s var(--ease), opacity 0.25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float.is-hidden { opacity: 0; pointer-events: none; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: none; }
[data-reveal-group] > * { transition-delay: calc(var(--i, 0) * 90ms); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .value { grid-template-columns: 1fr; }
  .value-media { aspect-ratio: 16/9; }
  .authority { grid-template-columns: 1fr; }
  .authority-media { aspect-ratio: 16/9; }
  .urgency { grid-template-columns: 1fr; }
  .urgency-media { aspect-ratio: 16/9; order: -1; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}

@media (max-width: 860px) {
  .nav-links, .header-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .trust { grid-template-columns: 1fr 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .itin-day { grid-template-columns: 1fr; gap: 18px; }
  .itin-label { position: static; flex-direction: row; align-items: baseline; gap: 12px; }
  .highlight-track { grid-template-columns: 1fr; }
  .highlight-card, .highlight-card:nth-child(3n+1) { grid-column: span 1; }
  .price-panel { flex-direction: column; align-items: stretch; }
  .price-panel > div { width: 100%; box-sizing: border-box; }
  .price-cta { align-items: center; }
  .price-cta .btn { width: 100%; text-align: center; box-sizing: border-box; white-space: normal; }
  .price-title { max-width: none; }
}

@media (max-width: 640px) {
  .trust { grid-template-columns: 1fr; }
  .itin-label { flex-wrap: wrap; }
  .itin-label .route { flex-basis: 100%; }
  .scroll-cue { display: none; }
  .hero-content { text-align: center; }
  .hero-kicker, .hero-title, .hero-title-sentence, .hero-promise { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-facts { justify-content: center; }
  .hero-fact { align-items: center; }
  .testi-grid { grid-template-columns: 1fr; }
  .bonus { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .price-amount { font-size: 34px; }
  .hero-facts { gap: 24px; }
  .authority { margin-top: 36px; padding-top: 36px; }
}

/* ============================================================
   HOME — Hero slideshow
   ============================================================ */
.hero-slideshow { position: absolute; inset: 0; }
.hero-slideshow img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-slideshow img.is-active { opacity: 1; }
.hero-title-sentence {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.08;
  font-size: clamp(26px, 5.4vw, 56px);
  max-width: 780px;
}
.slideshow-dots {
  position: absolute; z-index: 1;
  right: var(--gutter); bottom: 34px;
  display: flex; gap: 8px;
}
.slideshow-dots span {
  width: 22px; height: 3px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px;
  transition: background 0.3s ease;
}
.slideshow-dots span.is-active { background: var(--white); }

/* ============================================================
   HOME — Pilares (por qué elegirnos)
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}
.pillar {
  background: var(--white);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.3s ease;
}
.pillar:hover { background: var(--ice); }
.pillar .trust-icon { width: 52px; height: 52px; border-radius: 14px; }
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.pillar p { font-size: 14.5px; line-height: 1.65; color: var(--muted); }

/* ============================================================
   HOME — Nuestras experiencias
   ============================================================ */
.exp-tier-label {
  display: flex; align-items: center; gap: 14px;
  margin: 54px 0 20px;
}
.exp-tier-label:first-of-type { margin-top: 54px; }
.exp-tier-label span {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.exp-tier-label::after { content: ""; flex: 1; height: 1px; background: var(--border-soft); }

.exp-grid-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.exp-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  color: var(--white);
  isolation: isolate;
  display: block;
}
.exp-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
  z-index: -2;
}
.exp-card:hover img { transform: scale(1.05); }
.exp-card::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(7,17,46,0.02) 35%, rgba(4,10,28,0.92) 100%);
}
.exp-card .exp-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--blue);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.exp-card .exp-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; }
.exp-card .exp-body h3 {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(20px, 2.4vw, 28px); letter-spacing: -0.01em; margin-bottom: 8px;
}
.exp-card .exp-body p { font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.85); max-width: 40ch; }
.exp-card .exp-cta {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--white);
}

.novedad-banner {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21/9;
  color: var(--white);
  isolation: isolate;
  margin-top: 22px;
}
.novedad-banner img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
  z-index: -2;
}
.novedad-banner:hover img { transform: scale(1.05); }
.novedad-banner::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(4,10,28,0.92) 0%, rgba(4,10,28,0.55) 55%, rgba(4,10,28,0.15) 100%);
}
.novedad-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--blue);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.novedad-body { position: absolute; left: 0; bottom: 0; padding: 28px; max-width: 480px; }
.novedad-body h3 {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(18px, 2.2vw, 24px); letter-spacing: -0.01em; margin-bottom: 8px;
}
.novedad-body p { font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.85); }
.novedad-cta {
  margin-top: 14px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--white);
}

.exp-grid-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.exp-grid-secondary .exp-card { aspect-ratio: 16/10; }
.exp-card.is-soon .exp-badge { background: rgba(255,255,255,0.16); backdrop-filter: blur(6px); }

.exp-grid-daily {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.daily-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  color: var(--white);
  isolation: isolate;
}
.daily-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.daily-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7,17,46,0.1) 30%, rgba(4,10,28,0.88) 100%); }
.daily-card .daily-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px; }
.daily-card h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 4px; }
.daily-card p { font-size: 12px; line-height: 1.4; color: rgba(255,255,255,0.8); }
.daily-card .daily-cta { margin-top: 10px; display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--white); }

/* ============================================================
   HOME — Equipo
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.team-card { display: flex; flex-direction: column; gap: 18px; }
.team-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.team-info h3 {
  font-family: var(--font-body); font-weight: 700; font-size: 17px; color: var(--navy); margin-bottom: 2px;
}
.team-role { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.team-info p { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ============================================================
   HOME — Autoridad / estadísticas
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 54px;
}
.stat-item { background: var(--navy-deep); padding: 40px 28px; text-align: center; }
.stat-item b {
  display: block;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(34px, 4.4vw, 54px);
  color: var(--white);
  letter-spacing: -0.01em;
}
.stat-item span { font-size: 13px; color: var(--muted-on-dark); line-height: 1.5; display: block; margin-top: 8px; }

.milestone {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(228,247,253,0.06);
  border: 1px solid rgba(228,247,253,0.2);
  border-radius: var(--radius);
  padding: 26px 30px;
}
.milestone .trust-icon { background: var(--blue); flex-shrink: 0; }
.milestone p { font-size: 14.5px; line-height: 1.6; color: var(--white); }
.milestone b { color: var(--ice); }

/* ---------- Home responsive ---------- */
@media (max-width: 1080px) {
  .pillars { grid-template-columns: 1fr; }
  .exp-grid-main { grid-template-columns: 1fr; }
  .exp-card { aspect-ratio: 6/5; }
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 860px) {
  .exp-grid-secondary { grid-template-columns: 1fr; }
  .exp-grid-secondary .exp-card { aspect-ratio: 6/5; }
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .milestone { flex-direction: column; align-items: flex-start; text-align: left; }
}
@media (max-width: 640px) {
  .exp-grid-daily { grid-template-columns: 1fr; }
  .exp-tier-label { margin-top: 40px; }
  .novedad-banner { aspect-ratio: 4/5; }
  .novedad-body { max-width: 100%; padding: 22px; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--navy-deep);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px var(--gutter) 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
  overflow-y: auto;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(19px, 5.5vw, 24px);
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-nav .btn {
  margin-top: 26px;
  padding: 18px 24px;
  font-size: clamp(17px, 4.6vw, 20px);
  box-sizing: border-box;
}
