/* ============================================================
   DESCUENTOURS — Viaja más, vive todo
   Paleta tomada del logo: azul marino, turquesa, naranja sol
   ============================================================ */
:root {
  --navy-900: #071e3a;
  --navy-800: #0b2a4a;
  --navy: #0e3a66;
  --navy-600: #144b82;
  --teal: #18a7c9;
  --teal-light: #5ad0ea;
  --teal-pale: #e3f5fa;
  --orange: #ff9f1c;
  --orange-soft: #ffb03a;
  --sun: #ffc93c;
  --green-wa: #25d366;
  --green-wa-dark: #1eb958;
  --red-hot: #ff4d4f;
  --bg: #f2f8fc;
  --card: #ffffff;
  --text: #12263a;
  --text-soft: #4a627a;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(14, 58, 102, .12);
  --shadow-lg: 0 18px 50px rgba(7, 30, 58, .22);
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
[hidden] { display: none !important; } /* respeta el atributo hidden aunque el elemento sea flex/grid */
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 800; }

.container { width: min(1160px, 92%); margin-inline: auto; }

/* ---------- Utilidades ---------- */
.grad-text {
  background: linear-gradient(90deg, var(--teal-light), var(--sun));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.grad-text--warm {
  background: linear-gradient(90deg, var(--orange), var(--sun));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-tag {
  display: inline-block; background: var(--teal-pale); color: var(--navy);
  font-weight: 700; font-size: .85rem; padding: .35rem 1rem;
  border-radius: 100px; margin-bottom: .8rem;
}
.section-tag--light { background: rgba(255,255,255,.14); color: #fff; }
.section-sub { color: var(--text-soft); max-width: 560px; margin-top: .4rem; }

/* Animación de aparición al hacer scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 800; border-radius: 100px; transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--lg { padding: .95rem 1.9rem; font-size: 1.05rem; }
.btn--sm { padding: .5rem 1.1rem; font-size: .9rem; }
.btn--orange {
  background: linear-gradient(135deg, var(--orange), var(--sun));
  color: var(--navy-900); box-shadow: 0 8px 24px rgba(255, 159, 28, .45);
}
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border: 2px solid rgba(255,255,255,.45); }
.btn--wa { background: linear-gradient(135deg, var(--green-wa), var(--green-wa-dark)); color: #fff; box-shadow: 0 8px 24px rgba(37, 211, 102, .35); }

.pulse { animation: pulse 2.2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(255,159,28,.45), 0 0 0 0 rgba(255,159,28,.5); }
  50% { box-shadow: 0 8px 24px rgba(255,159,28,.45), 0 0 0 14px rgba(255,159,28,0); }
}

/* ---------- Barra de cupón ---------- */
.coupon-bar {
  background: linear-gradient(90deg, var(--navy-800), var(--navy-600), var(--navy-800));
  color: #fff; text-align: center; font-size: .92rem;
}
.coupon-bar__btn { color: #fff; width: 100%; padding: .55rem 1rem; font-size: inherit; }
.coupon-bar__btn strong { color: var(--sun); }
.coupon-bar--won { background: linear-gradient(90deg, #0a7d43, #12a35a, #0a7d43); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(7,30,58,.12); }
.header__inner { display: flex; align-items: center; gap: 1.4rem; padding: .7rem 0; }
.brand { display: flex; align-items: center; gap: .45rem; font-size: 1.3rem; font-weight: 900; letter-spacing: -.02em; }
.brand__text { color: var(--navy); }
.brand__text em { font-style: normal; color: var(--teal); }
.nav { display: flex; gap: 1.2rem; margin-left: auto; font-weight: 600; font-size: .95rem; color: var(--text-soft); }
.nav a { padding: .3rem 0; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.nav a:hover { color: var(--navy); border-color: var(--teal); }
.burger { display: none; flex-direction: column; gap: 5px; padding: .4rem; }
.burger span { width: 24px; height: 3px; background: var(--navy); border-radius: 2px; transition: transform .25s, opacity .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(1100px 600px at 78% 20%, #14507e 0%, transparent 55%),
              linear-gradient(150deg, var(--navy-900) 15%, #0d3257 55%, #0e5d7a 100%);
}
.hero__inner {
  display: grid; grid-template-columns: 1.15fr .85fr; align-items: center;
  gap: 2rem; padding: 4.5rem 0 6.5rem; position: relative; z-index: 2;
}
.hero__badge {
  display: inline-block; background: rgba(255, 77, 79, .18); border: 1px solid rgba(255, 77, 79, .5);
  color: #ffd7d7; font-size: .85rem; font-weight: 700; padding: .35rem 1rem;
  border-radius: 100px; margin-bottom: 1.1rem;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 900; margin-bottom: 1rem; }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: #cfe6f5; max-width: 520px; }
.hero__sub strong { color: #fff; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.6rem 0 .9rem; }
.hero__note { font-size: .88rem; color: #9fc4dd; }
.hero__stats { display: flex; gap: 2.2rem; margin-top: 1.8rem; }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong { font-size: 1.5rem; font-weight: 900; color: var(--sun); }
.hero__stats span { font-size: .82rem; color: #9fc4dd; }

.hero__logo-wrap {
  display: flex; justify-content: center;
  transition: transform .25s ease-out; will-change: transform;
}
.hero__logo {
  width: min(430px, 80vw);
  filter: drop-shadow(0 0 36px rgba(90, 208, 234, .4)) drop-shadow(0 16px 30px rgba(0, 0, 0, .35));
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.hero__decor { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .35; }
.hero__decor--1 { width: 420px; height: 420px; background: var(--teal); top: -140px; left: -120px; }
.hero__decor--2 { width: 380px; height: 380px; background: var(--orange); bottom: -160px; right: -100px; opacity: .22; }
.hero__float { position: absolute; font-size: 2rem; opacity: .85; animation: floaty 6s ease-in-out infinite; z-index: 1; }
.hero__float--plane { top: 16%; left: 6%; animation-delay: .8s; }
.hero__float--palm { bottom: 9%; left: 5%; animation-delay: 1.6s; }
.hero__float--sun { top: 12%; right: 8%; animation-delay: 2.4s; }
.hero__wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: 70px; z-index: 3; }

/* ---------- Ciudades ---------- */
.cities { padding: 1.6rem 0 .4rem; }
.cities__label { font-weight: 800; color: var(--navy); margin-bottom: .7rem; }
.cities__chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip {
  padding: .5rem 1.15rem; border-radius: 100px; background: #fff; color: var(--text-soft);
  font-weight: 700; font-size: .92rem; border: 2px solid #dcebf5;
  transition: all .2s ease;
}
.chip:hover { border-color: var(--teal); color: var(--navy); transform: translateY(-2px); }
.chip.active {
  background: linear-gradient(135deg, var(--navy), var(--navy-600));
  color: #fff; border-color: var(--navy);
  box-shadow: 0 6px 18px rgba(14,58,102,.3);
}

/* ---------- Ofertas flash ---------- */
.flash { padding: 2.2rem 0 1rem; }
.flash__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; }
.flash__head h2 { color: var(--navy); }
.countdown { display: flex; align-items: center; gap: .3rem; font-weight: 900; color: var(--red-hot); }
.countdown__label { font-size: .85rem; font-weight: 700; color: var(--text-soft); margin-right: .4rem; }
.countdown__digit {
  background: var(--navy-900); color: #fff; padding: .35rem .55rem;
  border-radius: 8px; font-size: 1.05rem; min-width: 2.3rem; text-align: center;
  font-variant-numeric: tabular-nums;
}
.flash__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(320px, 82vw);
  gap: 1.1rem; overflow-x: auto; padding: .4rem .2rem 1.2rem;
  scroll-snap-type: x mandatory; scrollbar-width: thin;
}
.flash__track > * { scroll-snap-align: start; }

/* ---------- Tarjetas de paquete ---------- */
.packages { padding: 3.5rem 0; }
.packages h2 { color: var(--navy); }
.packages__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
  gap: 1.4rem; margin-top: 1.8rem;
}
.pcard {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pcard__media {
  height: 150px; display: grid; place-items: center; font-size: 4rem;
  position: relative; overflow: hidden;
}
.pcard__media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(340px 120px at 50% 115%, rgba(255,255,255,.35), transparent 60%);
}
.pcard__emoji { filter: drop-shadow(0 6px 12px rgba(0,0,0,.25)); animation: floaty 4.5s ease-in-out infinite; }
.pcard__off {
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  background: var(--red-hot); color: #fff; font-weight: 900; font-size: .85rem;
  padding: .25rem .7rem; border-radius: 100px; box-shadow: 0 4px 12px rgba(255,77,79,.4);
}
.pcard__tag {
  position: absolute; top: .8rem; right: .8rem; z-index: 2;
  background: rgba(7,30,58,.75); color: var(--sun); font-weight: 800; font-size: .72rem;
  padding: .25rem .6rem; border-radius: 100px; backdrop-filter: blur(4px);
}
.pcard__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.pcard__title { font-size: 1.15rem; font-weight: 800; color: var(--navy); display: flex; justify-content: space-between; align-items: baseline; gap: .5rem; }
.pcard__rating { font-size: .85rem; color: var(--orange); font-weight: 800; white-space: nowrap; }
.pcard__meta { font-size: .85rem; color: var(--text-soft); }
.pcard__includes { display: flex; gap: .45rem; font-size: .78rem; color: var(--text-soft); flex-wrap: wrap; }
.pcard__includes span { background: var(--teal-pale); color: var(--navy); padding: .18rem .55rem; border-radius: 100px; font-weight: 700; }
.pcard__prices { margin-top: .3rem; }
.pcard__old { color: #97a9ba; text-decoration: line-through; font-size: .9rem; font-weight: 600; }
.pcard__price { font-size: 1.55rem; font-weight: 900; color: var(--navy); line-height: 1.1; }
.pcard__price small { font-size: .8rem; font-weight: 700; color: var(--text-soft); }
.pcard__coupon {
  background: #fff6e5; border: 1.5px dashed var(--orange); color: #9a5b00;
  border-radius: var(--radius-sm); font-size: .84rem; font-weight: 800;
  padding: .4rem .7rem;
}
.pcard__scarcity { font-size: .8rem; color: var(--red-hot); font-weight: 800; }
.pcard__bar { height: 6px; background: #ffe3e3; border-radius: 100px; overflow: hidden; }
.pcard__bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--red-hot), var(--orange)); border-radius: 100px; }
.pcard__viewers { font-size: .78rem; color: var(--text-soft); }
.pcard__cta { margin-top: .5rem; padding: .8rem 1rem; font-size: .98rem; }

/* ---------- Ruleta: popup estilo Temu ----------
   (selectores compuestos: deben ganarle a .modal__card definido más abajo) */
.modal__card.wheel-modal__card {
  --ws: min(300px, 74vw); /* diámetro de la rueda */
  max-width: 470px; overflow: hidden;
  background: linear-gradient(165deg, #ff9f1c 0%, #ff5e3a 45%, #d92d5a 100%);
  padding: 2.3rem 1.6rem 2rem;
}
.wheel-modal__burst {
  position: absolute; left: 50%; top: 50%; width: 1300px; height: 1300px;
  margin: -650px 0 0 -650px; border-radius: 50%;
  background: repeating-conic-gradient(rgba(255,255,255,.13) 0 14deg, transparent 14deg 28deg);
  animation: burstSpin 20s linear infinite; pointer-events: none;
}
@keyframes burstSpin { to { transform: rotate(360deg); } }
.wheel-modal__title {
  position: relative; z-index: 1; color: #fff !important; font-size: 2rem !important;
  text-shadow: 0 3px 0 rgba(0,0,0,.18), 0 8px 24px rgba(0,0,0,.3);
  animation: titlePulse 1.6s ease-in-out infinite;
}
@keyframes titlePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.wheel-modal__sub {
  position: relative; z-index: 1; color: #ffe9d6 !important;
  font-size: .92rem !important; margin: .5rem 0 0 !important;
}
.wheel-modal__sub strong { color: #ffe27a; }
.wheel-modal .modal__close { color: rgba(255,255,255,.85); z-index: 5; }
.wheel-modal .modal__close:hover { color: #fff; }

.wheel-box { position: relative; width: var(--ws); margin: 1.5rem auto 1.3rem; z-index: 1; }
.wheel__lights { position: absolute; inset: -24px; border-radius: 50%; pointer-events: none; z-index: 4; }
.wheel__lights span {
  position: absolute; left: 50%; top: 50%; width: 10px; height: 10px; margin: -5px;
  border-radius: 50%; background: #fff7cf;
  box-shadow: 0 0 10px 3px rgba(255, 226, 122, .95);
  transform: rotate(calc(var(--i) * 30deg)) translateY(calc((var(--ws) + 48px) / -2 + 12px));
  animation: bulb 1.1s infinite; animation-delay: calc(var(--i) * .09s);
}
@keyframes bulb { 0%, 100% { opacity: 1; } 50% { opacity: .2; } }

.wheel__pointer {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%); z-index: 6;
  width: 0; height: 0; border-left: 15px solid transparent; border-right: 15px solid transparent;
  border-top: 26px solid var(--sun);
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.4));
}
.wheel__pointer.ticking { animation: tick .12s infinite alternate; transform-origin: top center; }
@keyframes tick {
  from { transform: translateX(-50%) rotate(-7deg); }
  to { transform: translateX(-50%) rotate(7deg); }
}

.wheel {
  width: 100%; aspect-ratio: 1; border-radius: 50%; position: relative;
  background: conic-gradient(
    #0e3a66 0deg 45deg,
    #18a7c9 45deg 90deg,
    #ff9f1c 90deg 135deg,
    #6fd3e8 135deg 180deg,
    #0e3a66 180deg 225deg,
    #18a7c9 225deg 270deg,
    #ff9f1c 270deg 315deg,
    #6fd3e8 315deg 360deg
  );
  border: 8px solid #fff;
  box-shadow: 0 0 0 6px #ffc93c, 0 18px 50px rgba(0,0,0,.4), inset 0 0 30px rgba(0,0,0,.12);
  transition: transform 4.6s cubic-bezier(.15,.85,.25,1);
  will-change: transform;
}
.wheel__labels { position: absolute; inset: 0; }
.wheel__label {
  position: absolute; left: 50%; top: 50%;
  width: 80px; margin-left: -40px; margin-top: -9px;
  text-align: center; font-size: .68rem; font-weight: 900; letter-spacing: .02em;
  transform-origin: center; line-height: 1.15; text-transform: uppercase;
}
.wheel__hub {
  position: absolute; inset: 0; margin: auto; width: 66px; height: 66px;
  background: radial-gradient(circle at 35% 30%, #fff, #e9f4fa 70%);
  border-radius: 50%; display: grid; place-items: center;
  font-size: 1.7rem; font-weight: 900; color: var(--orange);
  box-shadow: 0 4px 14px rgba(0,0,0,.35), inset 0 -3px 8px rgba(14,58,102,.18);
  z-index: 4;
}
.wheel.glow { animation: wheelGlow 1.2s ease-in-out infinite; }
@keyframes wheelGlow {
  0%, 100% { box-shadow: 0 0 0 6px #ffc93c, 0 18px 50px rgba(0,0,0,.4); }
  50% { box-shadow: 0 0 0 11px #ffe27a, 0 18px 60px rgba(255,201,60,.55); }
}
.wheel__spin {
  position: relative; z-index: 1; width: min(280px, 100%);
  background: linear-gradient(135deg, #ffe27a, #ffc93c);
  color: var(--navy-900); box-shadow: 0 10px 26px rgba(0,0,0,.3);
}
.wheel__spin:disabled { filter: grayscale(.4) brightness(.9); cursor: not-allowed; transform: none; animation: none; }
.wheel__hint { position: relative; z-index: 1; font-size: .85rem; color: #ffe9d6; margin-top: .7rem; }

/* Celular: el popup toma toda la pantalla, tipo Temu */
@media (max-width: 520px) {
  .modal.wheel-modal { padding: 0; }
  .modal__card.wheel-modal__card {
    --ws: min(330px, 80vw);
    max-width: none; width: 100%; min-height: 100dvh; border-radius: 0;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
  }
  .wheel-modal__title { font-size: 2.2rem !important; }
}

/* ---------- Pasos ---------- */
.steps { padding: 3.5rem 0; text-align: center; }
.steps h2 { color: var(--navy); }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2rem; }
.step {
  background: #fff; border-radius: var(--radius); padding: 2rem 1.4rem 1.8rem;
  box-shadow: var(--shadow); position: relative;
  transition: transform .25s ease;
}
.step:hover { transform: translateY(-6px); }
.step__num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--sun));
  color: var(--navy-900); font-weight: 900; box-shadow: 0 6px 16px rgba(255,159,28,.4);
}
.step__icon { font-size: 2.6rem; margin-bottom: .6rem; }
.step h3 { color: var(--navy); margin-bottom: .4rem; }
.step p { color: var(--text-soft); font-size: .93rem; }

/* ---------- Beneficios ---------- */
.benefits { padding: 1rem 0 3.5rem; }
.benefits__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.benefit {
  background: linear-gradient(160deg, #fff, var(--teal-pale));
  border-radius: var(--radius); padding: 1.5rem 1.3rem;
  border: 1px solid #dcebf5;
}
.benefit span { font-size: 2rem; }
.benefit h3 { font-size: 1.02rem; color: var(--navy); margin: .5rem 0 .3rem; }
.benefit p { font-size: .86rem; color: var(--text-soft); }

/* ---------- Testimonios ---------- */
.testimonials { padding: 3rem 0; }
.testimonials h2 { color: var(--navy); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 1.8rem; }
.tcard {
  background: #fff; border-radius: var(--radius); padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow);
}
.tcard__stars { color: var(--orange); letter-spacing: .15em; margin-bottom: .7rem; }
.tcard blockquote { font-size: .95rem; color: var(--text); }
.tcard figcaption { margin-top: 1rem; font-size: .88rem; font-weight: 700; color: var(--text-soft); display: flex; align-items: center; gap: .6rem; }
.tcard__avatar {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--av, var(--teal)); color: #fff; font-weight: 900; font-size: .85rem;
}

/* ---------- FAQ ---------- */
.faq { padding: 3rem 0 3.5rem; }
.faq h2 { color: var(--navy); margin-bottom: 1.4rem; }
.faq__inner { max-width: 760px; }
.faq details {
  background: #fff; border-radius: var(--radius-sm); margin-bottom: .7rem;
  box-shadow: var(--shadow); overflow: hidden;
}
.faq summary {
  padding: 1rem 1.3rem; font-weight: 800; color: var(--navy); cursor: pointer;
  list-style: none; position: relative; padding-right: 3rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--teal); font-weight: 900; transition: transform .25s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 1.3rem 1.2rem; color: var(--text-soft); font-size: .93rem; }

/* ---------- CTA final ---------- */
.cta-final {
  background: linear-gradient(140deg, var(--navy-900), #0d3257 65%, #0a4c66);
  color: #fff; text-align: center; padding: 4rem 0;
}
.cta-final h2 { font-size: clamp(1.8rem, 4.5vw, 2.6rem); font-weight: 900; }
.cta-final p { color: #cfe6f5; margin: .8rem 0 1.6rem; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #b9d2e4; font-size: .9rem; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem;
  padding: 3rem 0 2rem;
}
.footer__logo { width: 130px; margin-bottom: .6rem; }
.footer h4 { color: #fff; margin-bottom: .8rem; font-size: 1rem; }
.footer__grid a { display: block; padding: .22rem 0; transition: color .2s; }
.footer__grid a:hover { color: var(--teal-light); }
.footer__legal { border-top: 1px solid rgba(255,255,255,.12); padding: 1.4rem 0 2rem; font-size: .76rem; color: #7d9cb5; }
.footer__legal p + p { margin-top: .5rem; }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 70;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-wa), var(--green-wa-dark));
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .5);
  animation: pulseWa 2.4s infinite;
}
@keyframes pulseWa {
  0%,100% { box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.45); }
  50% { box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0); }
}

/* ---------- Toast prueba social ---------- */
.toast {
  position: fixed; left: 18px; bottom: 20px; z-index: 65;
  background: #fff; color: var(--text); box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm); padding: .8rem 1.1rem; font-size: .86rem;
  max-width: 300px; display: flex; align-items: center; gap: .7rem;
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
  border-left: 4px solid var(--green-wa);
}
.toast.show { opacity: 1; transform: none; }
.toast strong { color: var(--navy); }

/* ---------- Modales ---------- */
.modal {
  position: fixed; inset: 0; z-index: 90; display: grid; place-items: center;
  background: rgba(7, 30, 58, .68); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .3s ease; padding: 1rem;
}
.modal.open { opacity: 1; pointer-events: auto; }
.modal__card {
  background: #fff; border-radius: 24px; padding: 2.4rem 2rem 2rem;
  max-width: 420px; width: 100%; text-align: center; position: relative;
  transform: scale(.86) translateY(16px); transition: transform .35s cubic-bezier(.2,1.4,.4,1);
  box-shadow: var(--shadow-lg);
}
.modal.open .modal__card { transform: none; }
.modal__close {
  position: absolute; top: .9rem; right: 1rem; font-size: 1.1rem; color: #9db2c4;
  padding: .3rem; transition: color .2s;
}
.modal__close:hover { color: var(--navy); }
.modal__card h3 { font-size: 1.5rem; font-weight: 900; color: var(--navy); margin-bottom: .6rem; }
.modal__card > p { color: var(--text-soft); font-size: .95rem; margin-bottom: 1.3rem; }
.modal__skip { display: block; margin: .9rem auto 0; color: #9db2c4; font-size: .85rem; text-decoration: underline; }
.gift__emoji, .prize__emoji { font-size: 4rem; animation: bounceIn .6s ease, floaty 3s 1s ease-in-out infinite; }
@keyframes bounceIn { 0% { transform: scale(0); } 60% { transform: scale(1.25); } 100% { transform: scale(1); } }

.prize__label { font-size: 1.25rem !important; font-weight: 900; color: var(--orange) !important; }
.prize__code-wrap { display: flex; gap: .5rem; justify-content: center; align-items: stretch; margin: .4rem 0 1rem; }
.prize__code {
  background: var(--teal-pale); border: 2px dashed var(--teal); color: var(--navy);
  font-size: 1.15rem; font-weight: 900; letter-spacing: .06em;
  padding: .55rem 1rem; border-radius: var(--radius-sm);
  display: flex; align-items: center;
}
.prize__copy {
  background: var(--navy); color: #fff; font-weight: 800; font-size: .85rem;
  padding: 0 1rem; border-radius: var(--radius-sm); transition: background .2s;
}
.prize__copy:hover { background: var(--navy-600); }
.prize__note { font-size: .8rem !important; }

/* ---------- Confeti ---------- */
.confetti-box { position: fixed; inset: 0; pointer-events: none; z-index: 95; overflow: hidden; }
.confetti {
  position: absolute; top: -14px; width: 10px; height: 16px; border-radius: 2px;
  animation: confFall linear forwards;
}
@keyframes confFall {
  to { transform: translateY(105vh) rotate(720deg); opacity: .6; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding: 3rem 0 5.5rem; }
  .hero__sub { margin-inline: auto; }
  .hero__ctas { justify-content: center; }
  .hero__stats { justify-content: center; gap: 1.6rem; }
  .hero__logo-wrap { order: -1; }
  .hero__logo { width: min(300px, 62vw); }
  .hero__float--palm { display: none; }
  .steps__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; top: 0; right: -280px; width: 260px; height: 100dvh;
    background: #fff; flex-direction: column; gap: .4rem; padding: 5rem 1.6rem 2rem;
    box-shadow: -10px 0 40px rgba(7,30,58,.2); transition: right .3s ease; z-index: 55;
    margin-left: 0; font-size: 1.05rem;
  }
  .nav.open { right: 0; }
  .nav a { padding: .7rem 0; border-bottom: 1px solid #eef4f9; }
  .burger { display: flex; z-index: 56; }
  .burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .header__wa { margin-left: auto; }
  .header__wa svg { margin: 0; }
  .header__wa { font-size: 0; gap: 0; padding: .55rem .7rem; }
  .flash__head { flex-direction: column; align-items: flex-start; }
  .benefits__grid { grid-template-columns: 1fr; }
  .toast { max-width: calc(100vw - 110px); font-size: .8rem; }
  .coupon-bar { font-size: .8rem; }
}

/* ============================================================
   MEJORAS DE INTERACTIVIDAD
   ============================================================ */

/* Barra de progreso de lectura */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 0; z-index: 100;
  background: linear-gradient(90deg, var(--teal), var(--sun), var(--orange));
  border-radius: 0 4px 4px 0;
}

/* Brillo que recorre los botones naranjas */
.btn--orange { position: relative; overflow: hidden; }
.btn--orange::after {
  content: ""; position: absolute; top: 0; height: 100%; width: 38%; left: -60%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  animation: shine 3.4s 1.2s infinite;
}
@keyframes shine { 0% { left: -60%; } 55% { left: 130%; } 100% { left: 130%; } }

/* Accesos rápidos del hero */
.hero__quick { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.hero__quick button {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.28);
  color: #e6f4fb; font-weight: 700; font-size: .85rem;
  padding: .42rem .95rem; border-radius: 100px; transition: all .2s;
}
.hero__quick button:hover {
  background: rgba(255,255,255,.22); transform: translateY(-2px);
  border-color: var(--teal-light);
}

/* Entrada escalonada de tarjetas (backwards: no bloquea el hover al terminar) */
.pcard { animation: cardIn .55s ease backwards; animation-delay: var(--d, 0s); }
@keyframes cardIn { from { opacity: 0; transform: translateY(24px) scale(.97); } }

/* Emoji del destino crece al pasar el mouse */
.pcard__emoji { font-size: 4rem; transition: font-size .3s ease; }
.pcard:hover .pcard__emoji { font-size: 4.7rem; }

/* Botón de favoritos */
.pcard__fav {
  position: absolute; bottom: .7rem; right: .8rem; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.92); display: grid; place-items: center;
  font-size: 1.1rem; box-shadow: 0 4px 12px rgba(0,0,0,.18);
  transition: transform .2s;
}
.pcard__fav:hover { transform: scale(1.12); }
.pcard__fav.on { animation: heartPop .45s; }
@keyframes heartPop { 0% { transform: scale(.6); } 55% { transform: scale(1.35); } 100% { transform: scale(1); } }

/* Resalte de tarjeta al llegar desde un acceso rápido */
.pcard.spot { box-shadow: 0 0 0 4px var(--orange), var(--shadow-lg); }

/* Flechas del carrusel flash */
.flash__nav { display: flex; gap: .5rem; }
.flash__nav button {
  width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--navy);
  font-size: 1.3rem; font-weight: 900; box-shadow: var(--shadow);
  transition: all .2s; line-height: 1;
}
.flash__nav button:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

/* Botón volver arriba */
.to-top {
  position: fixed; bottom: 96px; right: 29px; z-index: 69;
  width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--navy);
  font-size: 1.2rem; font-weight: 900; box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transform: translateY(10px); transition: all .3s;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }

/* Enlace activo del menú según la sección visible */
.nav a.active { color: var(--navy); border-color: var(--orange); }

/* Chip de ciudad rebota al seleccionarse */
.chip.active { animation: chipPop .35s; }
@keyframes chipPop { 0% { transform: scale(.85); } 60% { transform: scale(1.08); } 100% { transform: scale(1); } }

@media (max-width: 760px) {
  .to-top { bottom: 92px; right: 24px; }
}

/* ============================================================
   MYSTERY TRIP — producto estrella (turquesa + dorado del logo)
   ============================================================ */
:root { --gold: #e8b53a; --gold-soft: #f6d271; }

.nav__star { color: var(--teal) !important; font-weight: 800; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #10233b; box-shadow: 0 8px 24px rgba(232, 181, 58, .45);
}
.btn--ghost-dark { background: rgba(255,255,255,.08); color: #eaf5fb; border: 2px solid rgba(255,255,255,.35); }
.btn--ghost-dark:hover { background: rgba(255,255,255,.16); }

.mystery {
  position: relative; overflow: hidden; color: #eaf5fb;
  background:
    radial-gradient(700px 380px at 15% 20%, rgba(24,167,201,.35), transparent 60%),
    radial-gradient(600px 360px at 85% 85%, rgba(232,181,58,.18), transparent 60%),
    linear-gradient(150deg, #0a1b2e 10%, #0f3a44 60%, #12303f 100%);
  padding: 3.4rem 0;
}
.mystery__inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: 2.4rem; align-items: center; }
.mystery__media { display: flex; justify-content: center; }
.mystery__logo {
  width: min(420px, 84vw); border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(232,181,58,.25);
  animation: mysteryFloat 5.5s ease-in-out infinite;
}
@keyframes mysteryFloat { 0%,100% { transform: translateY(0) rotate(-.5deg); } 50% { transform: translateY(-12px) rotate(.5deg); } }

.mystery__badge {
  display: inline-block; background: rgba(232,181,58,.16); border: 1px solid rgba(232,181,58,.5);
  color: var(--gold-soft); font-weight: 800; font-size: .82rem;
  padding: .35rem 1rem; border-radius: 100px; margin-bottom: .8rem;
}
.mystery__title { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 900; color: #fff; letter-spacing: -.02em; }
.mystery__q { display: inline-block; color: var(--gold); animation: qPop 1.8s ease-in-out infinite; }
@keyframes qPop { 0%,100% { transform: scale(1) rotate(0); } 50% { transform: scale(1.2) rotate(8deg); } }
.mystery__tag { font-size: 1.15rem; color: #bfe3ef; margin: .3rem 0 .7rem; }
.mystery__tag em { color: var(--gold-soft); font-style: italic; }
.mystery__desc { color: #a8cddb; max-width: 540px; }
.mystery__desc strong { color: #fff; }
.mystery__perks { list-style: none; margin: 1rem 0; display: flex; flex-direction: column; gap: .45rem; font-weight: 600; color: #d6ecf3; }

.mystery__buy { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; margin: 1.2rem 0 1rem; }
.mystery__price { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.mystery__old { color: #7fa6b7; text-decoration: line-through; font-weight: 600; }
.mystery__now { font-size: 2rem; font-weight: 900; color: var(--gold-soft); }
.mystery__per { font-size: .85rem; color: #a8cddb; }
.mystery__cupo { font-size: .9rem; font-weight: 800; color: #ffd0c4; }
.mystery__cupo--hot { color: #ff9a86; }

.mystery__ctas { display: flex; flex-wrap: wrap; gap: .8rem; }

.mystery__spark { position: absolute; font-size: 1.8rem; opacity: .4; animation: floaty 6s ease-in-out infinite; }
.mystery__spark--1 { top: 14%; right: 10%; }
.mystery__spark--2 { bottom: 16%; right: 22%; animation-delay: 1.3s; }
.mystery__spark--3 { top: 22%; left: 6%; animation-delay: 2.1s; }

@media (max-width: 860px) {
  .mystery__inner { grid-template-columns: 1fr; text-align: center; }
  .mystery__media { order: -1; }
  .mystery__desc, .mystery__tag { margin-inline: auto; }
  .mystery__perks { align-items: center; }
  .mystery__buy, .mystery__ctas { justify-content: center; }
  .mystery__spark { display: none; }
}

/* ============================================================
   PORTAFOLIO HUILA: filtros, fotos, rutas macro e itinerarios
   ============================================================ */

/* Botón secundario delineado */
.btn--line {
  background: #fff; color: var(--navy);
  border: 2px solid #cfe2ef; box-shadow: none;
}
.btn--line:hover { border-color: var(--teal); color: var(--teal); }

/* Filtros */
.filters { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.4rem; }
.filters__row { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip--filter { font-size: .85rem; padding: .42rem .95rem; }
.filters__count { font-size: .85rem; color: var(--text-soft); margin-top: .8rem; font-weight: 600; }
.packages__more { text-align: center; margin-top: 1.8rem; }
.packages__empty {
  grid-column: 1 / -1; text-align: center; color: var(--text-soft);
  background: #fff; border-radius: var(--radius); padding: 2.5rem 1rem;
  box-shadow: var(--shadow);
}

/* Fotos reales en tarjetas */
.pcard__photo, .mcard__photo, .pkg-hero__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.pcard__media--photo::after {
  background: linear-gradient(180deg, rgba(7,30,58,.05) 40%, rgba(7,30,58,.45));
  z-index: 1;
}
.pcard__media > .pcard__off, .pcard__media > .pcard__tag,
.pcard__media > .pcard__fav { z-index: 2; }
.pcard__emoji { position: relative; z-index: 1; }
.pcard__emoji--badge {
  position: absolute; left: .8rem; bottom: .7rem; z-index: 2;
  font-size: 1.6rem; width: 44px; height: 44px; display: grid; place-items: center;
  background: rgba(255,255,255,.92); border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,.2); animation: none;
}
.pcard:hover .pcard__emoji--badge { font-size: 1.6rem; }

/* Número del paquete */
.pcard__num {
  font-style: normal; font-size: .68rem; font-weight: 900;
  background: var(--teal-pale); color: var(--teal);
  padding: .1rem .45rem; border-radius: 100px; vertical-align: middle;
}

/* Acciones de la tarjeta */
.pcard__actions { display: flex; gap: .5rem; margin-top: .5rem; }
.pcard__actions .pcard__cta { margin-top: 0; flex: 1; padding: .75rem .5rem; font-size: .92rem; }
.pcard__actions .btn--wa { flex: 1.25; }

/* Rutas macro (Huila en 3, 5 y 8 días) */
.macros { padding: 3.2rem 0 1rem; }
.macros h2 { color: var(--navy); }
.macros__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 1.8rem; }
.mcard {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.mcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mcard__media {
  height: 150px; position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.mcard__media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(7,30,58,.08) 40%, rgba(7,30,58,.5));
}
.mcard__stars {
  position: absolute; top: .7rem; left: .9rem; z-index: 2;
  color: var(--sun); font-size: 1.3rem; letter-spacing: .1em;
  text-shadow: 0 2px 6px rgba(0,0,0,.45);
}
.mcard__media .pcard__off { z-index: 2; top: .8rem; left: auto; right: .8rem; }
.mcard__emoji { position: relative; z-index: 1; font-size: 3.4rem; filter: drop-shadow(0 6px 12px rgba(0,0,0,.3)); }
.mcard__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.mcard__body h3 { color: var(--navy); font-size: 1.3rem; }
.mcard__body h3 small { font-weight: 700; color: var(--teal); font-size: .85rem; }
.mcard__route { font-size: .82rem; color: var(--text-soft); font-weight: 600; }
.mcard__desc { font-size: .88rem; color: var(--text-soft); flex: 1; }
.mcard__foot { display: flex; flex-direction: column; gap: .8rem; }
.mcard__actions { display: flex; gap: .5rem; }
.mcard__actions .btn { flex: 1; padding: .75rem .5rem; font-size: .92rem; }

/* Modal de itinerario */
.pkg-modal .modal__card {
  max-width: 560px; padding: 0; text-align: left;
  max-height: 90dvh; overflow-y: auto; overscroll-behavior: contain;
}
.pkg-modal .modal__close {
  position: sticky; top: .6rem; float: right; margin: .6rem .8rem 0 0;
  background: rgba(255,255,255,.9); border-radius: 50%;
  width: 34px; height: 34px; box-shadow: 0 2px 10px rgba(0,0,0,.2); z-index: 5;
}
.pkg-hero {
  height: 190px; position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.pkg-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(7,30,58,.45));
}
.pkg-hero__emoji { position: relative; z-index: 2; font-size: 4rem; filter: drop-shadow(0 6px 14px rgba(0,0,0,.35)); }
.pkg-hero .pcard__off { z-index: 2; }
.pkg-body { padding: 1.4rem 1.6rem 1.8rem; }
.pkg-body h3 { color: var(--navy); font-size: 1.45rem; margin-bottom: .3rem; }
.pkg-meta { font-size: .88rem; color: var(--text-soft); font-weight: 700; margin-bottom: .8rem; }
.pkg-line { font-size: .92rem; color: var(--text-soft); margin-bottom: .4rem; }
.pkg-line strong { color: var(--navy); }
.pkg-body h4 { color: var(--navy); margin: 1.1rem 0 .6rem; font-size: 1.05rem; }
.pkg-days { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.pkg-days li {
  display: flex; gap: .8rem; align-items: flex-start;
  background: var(--bg); border-radius: var(--radius-sm); padding: .7rem .9rem;
}
.pkg-days li span {
  flex-shrink: 0; background: linear-gradient(135deg, var(--teal), var(--navy-600));
  color: #fff; font-size: .72rem; font-weight: 900; text-transform: uppercase;
  padding: .3rem .6rem; border-radius: 100px; margin-top: .1rem; white-space: nowrap;
}
.pkg-days li p { font-size: .88rem; color: var(--text); }
.pkg-key {
  background: #fff6e5; border-left: 4px solid var(--orange); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: .7rem .9rem; font-size: .9rem; color: #7a4a00; margin: 1rem 0;
}
.pkg-price { margin: .6rem 0 1rem; }
.pkg-price .pcard__coupon { margin-top: .5rem; }
.pkg-cta { width: 100%; }
.pkg-note { font-size: .74rem; color: #97a9ba; margin-top: .8rem; }

@media (max-width: 960px) {
  .macros__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}
@media (max-width: 520px) {
  .pkg-modal { padding: 0; }
  .pkg-modal .modal__card { max-height: 100dvh; min-height: 100dvh; border-radius: 0; }
}

/* ============================================================
   PLATAFORMA: cuenta, compra, perfil y puntos
   ============================================================ */

/* Enlace de cuenta en el header */
.account-link {
  font-weight: 800; font-size: .9rem; color: var(--navy);
  padding: .45rem .9rem; border-radius: 100px; border: 2px solid #dcebf5;
  transition: all .2s; white-space: nowrap;
}
.account-link:hover { border-color: var(--orange); color: var(--orange); }

/* Chip de puntos en tarjetas */
.pcard__pts { display: block; font-size: .74rem; font-weight: 800; color: #9a5b00; margin-top: .2rem; }

.pcard__scarcity--full { color: var(--text-soft); }

/* Selector de fecha de salida en el modal */
.pkg-salidas { margin: .4rem 0 .2rem; }
.pkg-salidas__label { font-weight: 800; color: var(--navy); font-size: .95rem; display: flex; flex-direction: column; gap: .4rem; }
.pkg-salidas .buy-select { margin-top: .2rem; }
.pkg-cupo-hint { font-size: .84rem; font-weight: 700; color: #0a7d43; margin-top: .4rem; }
.pkg-cupo-hint--hot { color: var(--red-hot); }

/* Bloque de compra en el modal de itinerario */
.pkg-buy {
  background: var(--teal-pale); border-radius: var(--radius-sm);
  padding: 1rem 1.1rem; margin: .4rem 0 .8rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.pkg-buy__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-weight: 700; color: var(--navy); }
.pkg-buy__total { font-size: 1.05rem; color: var(--navy); }
.pkg-buy__total strong { font-size: 1.3rem; }
.pkg-buy__note { font-size: .8rem; color: var(--text-soft); }

/* Stepper de personas */
.stepper { display: inline-flex; align-items: center; gap: .8rem; }
.stepper__btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; color: var(--navy); font-size: 1.3rem; font-weight: 900;
  box-shadow: var(--shadow); border: 2px solid #dcebf5; line-height: 1;
  transition: all .15s;
}
.stepper__btn:hover { border-color: var(--teal); color: var(--teal); transform: scale(1.06); }
.stepper__num { min-width: 2ch; text-align: center; font-size: 1.3rem; font-weight: 900; color: var(--navy); }
.stepper--sm .stepper__btn { width: 34px; height: 34px; font-size: 1.1rem; }
.stepper--sm .stepper__num { font-size: 1.1rem; }

/* Páginas de plataforma */
.platform { background: var(--bg); }
.platform__main { min-height: 60vh; padding: 2.5rem 0 3.5rem; }
.platform__container { max-width: 980px; }

/* Login / registro */
.auth-wrap { display: grid; place-items: center; padding: 1rem 0; }
.auth-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  width: min(430px, 100%); padding: 1.8rem 1.7rem 1.5rem;
}
.auth-tabs { display: flex; gap: .4rem; margin-bottom: 1.3rem; background: var(--bg); border-radius: 100px; padding: .3rem; }
.auth-tab {
  flex: 1; padding: .6rem; border-radius: 100px; font-weight: 800; color: var(--text-soft);
  transition: all .2s;
}
.auth-tab.active { background: linear-gradient(135deg, var(--navy), var(--navy-600)); color: #fff; }
.auth-form { display: flex; flex-direction: column; gap: .9rem; }
.auth-form label { font-size: .85rem; font-weight: 700; color: var(--navy); display: flex; flex-direction: column; gap: .3rem; }
.auth-form label small { font-weight: 600; color: var(--text-soft); }
.auth-form input {
  padding: .7rem .9rem; border: 2px solid #dcebf5; border-radius: var(--radius-sm);
  font-family: inherit; font-size: .95rem; transition: border-color .2s;
}
.auth-form input:focus { outline: none; border-color: var(--teal); }
.auth-submit { margin-top: .3rem; }
.auth-msg { font-size: .85rem; font-weight: 700; min-height: 1.2em; text-align: center; }
.auth-msg.err { color: var(--red-hot); }
.auth-msg.ok { color: #0a7d43; }
.auth-perks { margin-top: 1.2rem; border-top: 1px solid #eef4f9; padding-top: 1rem; font-size: .82rem; color: var(--text-soft); }

/* Página de compra */
.buy-title { color: var(--navy); font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
.buy-sub { color: var(--text-soft); margin: .3rem 0 1.5rem; }
.buy-grid { display: grid; grid-template-columns: 1.2fr .9fr; gap: 1.4rem; align-items: start; }
.buy-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem 1.5rem 1.7rem; }
.buy-card h2 { font-size: 1.05rem; color: var(--navy); margin: 1.2rem 0 .6rem; }
.buy-card h2:first-child { margin-top: 0; }
.buy-note { font-size: .85rem; color: var(--text-soft); margin-bottom: .7rem; }
.buy-line { margin-top: .7rem; font-size: .95rem; color: var(--text-soft); }
.buy-old { color: #97a9ba; margin-right: .4rem; }
.buy-unit { color: var(--navy); font-size: 1.15rem; }
.buy-select {
  width: 100%; padding: .7rem .9rem; border: 2px solid #dcebf5; border-radius: var(--radius-sm);
  font-family: inherit; font-size: .95rem; background: #fff; color: var(--text);
}
.buy-badge { background: #fff6e5; color: #9a5b00; font-size: .78rem; padding: .2rem .6rem; border-radius: 100px; margin-left: .4rem; }
.buy-cupo { font-size: .88rem; font-weight: 800; color: #0a7d43; margin-top: .5rem; }
.buy-cupo--hot { color: var(--red-hot); }
.buy-puntos input[type="range"] { width: 100%; accent-color: var(--orange); }
.buy-puntos__info { font-size: .9rem; color: var(--navy); margin-top: .3rem; }
.buy-resumen { position: sticky; top: 90px; }
.buy-dl { display: flex; flex-direction: column; gap: .45rem; margin: .6rem 0 1rem; }
.buy-dl > div { display: flex; justify-content: space-between; gap: 1rem; font-size: .92rem; }
.buy-dl dt { color: var(--text-soft); }
.buy-dl dd { font-weight: 700; color: var(--navy); text-align: right; }
.buy-dl__desc dd { color: #0a7d43; }
.buy-dl__total { border-top: 2px solid #eef4f9; padding-top: .6rem; margin-top: .3rem; font-size: 1.05rem !important; }
.buy-dl__total dd { font-size: 1.3rem; }
.buy-earn { font-size: .85rem; color: #9a5b00; font-weight: 700; margin-bottom: .8rem; }
.buy-confirm { background: var(--teal-pale); color: var(--navy); border-radius: var(--radius-sm); padding: .7rem .9rem; font-size: .92rem; text-align: center; margin-bottom: .7rem; }
.buy-pay { width: 100%; }
.buy-fine { font-size: .72rem; color: #97a9ba; margin-top: .8rem; }
.buy-fine a { text-decoration: underline; }

/* Banner de verificación de correo */
.verify-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  background: #fff6e5; border: 1.5px solid var(--orange); border-radius: var(--radius-sm);
  padding: .85rem 1.1rem; margin: 1rem 0 0; font-size: .92rem; color: #7a4a00;
}
.verify-banner strong { color: #9a5b00; }

.auth-forgot { text-align: center; margin-top: 1rem; font-size: .88rem; }
.auth-forgot a { color: var(--teal); text-decoration: underline; font-weight: 700; }

/* Perfil */
.perfil__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.perfil__head h1 { color: var(--navy); font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
.perfil__puntos {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: stretch;
  margin: 1.4rem 0 2.2rem;
}
.perfil__saldo {
  background: linear-gradient(140deg, var(--navy-900), #0d3257 70%, #0a4c66);
  color: #fff; border-radius: var(--radius); padding: 1.8rem 2.2rem;
  display: flex; flex-direction: column; justify-content: center; gap: .3rem;
  box-shadow: var(--shadow-lg); min-width: 250px;
}
.perfil__saldo-num { font-size: 2.4rem; font-weight: 900; color: var(--sun); }
.perfil__saldo-label { font-weight: 700; color: #cfe6f5; }
.perfil__saldo-valor { font-size: .9rem; color: #9fc4dd; }
.perfil__como { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.4rem 1.6rem; }
.perfil__como h3 { color: var(--navy); margin-bottom: .6rem; }
.perfil__como ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; font-size: .92rem; color: var(--text-soft); margin-bottom: 1rem; }
.perfil h2 { color: var(--navy); font-size: 1.2rem; margin: 1.6rem 0 .8rem; }
.perfil__empty { color: var(--text-soft); background: #fff; border-radius: var(--radius-sm); padding: 1.2rem; box-shadow: var(--shadow); }

/* Tablas */
.tabla-scroll { overflow-x: auto; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.tabla { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 560px; }
.tabla th { text-align: left; padding: .8rem 1rem; background: var(--teal-pale); color: var(--navy); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
.tabla td { padding: .8rem 1rem; border-top: 1px solid #eef4f9; vertical-align: top; }
.tabla small { color: var(--text-soft); }
.estado { font-size: .78rem; font-weight: 800; padding: .2rem .6rem; border-radius: 100px; background: #eef2f6; color: var(--text-soft); white-space: nowrap; }
.estado--ok { background: #e3f7ec; color: #0a7d43; }
.estado--wait { background: #fff6e5; color: #9a5b00; }
.estado--fail { background: #ffe9e9; color: var(--red-hot); }
.pts-pos { color: #0a7d43; font-weight: 800; }
.pts-neg { color: var(--red-hot); font-weight: 800; }

/* Resultado de pago */
.pago-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  max-width: 560px; margin: 1.5rem auto; padding: 2.4rem 2rem; text-align: center;
}
.pago-card__emoji { font-size: 3.6rem; margin-bottom: .6rem; }
.pago-card h1 { color: var(--navy); font-size: 1.7rem; margin-bottom: .7rem; }
.pago-card p { color: var(--text-soft); margin-bottom: .6rem; }
.pago-card__total strong { color: var(--navy); font-size: 1.15rem; }
.pago-card__puntos { color: #9a5b00 !important; font-weight: 700; }
.pago-card--ok { border-top: 6px solid #12a35a; }
.pago-card--wait { border-top: 6px solid var(--orange); }
.pago-card--fail { border-top: 6px solid var(--red-hot); }
.pago-card__actions { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.2rem; }

@media (max-width: 860px) {
  .buy-grid { grid-template-columns: 1fr; }
  .buy-resumen { position: static; }
  .perfil__puntos { grid-template-columns: 1fr; }
}

/* ---------- Accesibilidad: menos movimiento ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
