/* =========================================================================
   Viajar Seguro by KUBO — estilos
   Paleta segun manual KUBO (oct-2025): PRIMARIO azul-violeta #4B4BEF,
   negro #232323, blanco. Lima #D8E718 SOLO en detalles minimos.
   Tipografia: cuerpo Montserrat; titulos en geometrica techno (Saira).
   ========================================================================= */

:root {
  /* ===== Marca KUBO ===== */
  --navy:        #232323;   /* "negro" KUBO #232323 */
  --navy-700:    #141414;   /* negro profundo para degradados */
  --blue:        #4B4BEF;   /* PRIMARIO: azul-violeta tecnologico */
  --blue-600:    #3F3FC4;   /* secundario oscuro (profundidad) */
  --blue-500:    #4949E8;
  --lime:        #D8E718;   /* secundario lima — USO MINIMO, solo detalles */

  /* Neutros */
  --ink:    #232323;
  --slate:  #55555f;
  --muted:  #9a9aa6;
  --line:   #e7e7ef;
  --bg:     #ffffff;
  --bg-soft:#f5f5fb;

  --radius:   16px;
  --radius-lg:24px;
  --shadow-sm: 0 1px 2px rgba(35,35,35,.06), 0 2px 8px rgba(35,35,35,.05);
  --shadow:    0 10px 30px rgba(35,35,40,.10);
  --shadow-lg: 0 24px 60px rgba(63,63,196,.18);

  --font-display: "Saira", "Montserrat", system-ui, sans-serif;
  --font-body:    "Montserrat", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; margin: 0 0 .4em; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1140px, 92vw); margin-inline: auto; }
.container.narrow { width: min(760px, 92vw); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: .8rem 1.4rem; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-600) 100%);
  box-shadow: 0 8px 20px rgba(75,75,239,.32);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(75,75,239,.42); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-block { width: 100%; }
.btn-lg { padding: 1rem 1.6rem; font-size: 1.08rem; }
.btn-sm { padding: .55rem 1rem; font-size: .92rem; }

.link-reset { background: none; border: 0; color: var(--blue); font-weight: 600; cursor: pointer; font-size: .95rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; padding: .7rem 0; }
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand-logo { height: 38px; width: auto; display: block; }
.brand-text { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1.15rem; line-height: 1; letter-spacing: .01em; }
.brand-text strong { font-weight: 800; color: var(--blue); }
.brand-text em { display: block; font-style: normal; font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.header-nav { display: flex; gap: 1.6rem; margin-left: auto; font-weight: 500; color: var(--slate); }
.header-nav a:hover { color: var(--blue); }
.header-wa { margin-left: 1.2rem; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem); }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(75,75,239,.18), transparent 60%),
    radial-gradient(600px 420px at 2% 10%, rgba(63,63,196,.10), transparent 55%),
    linear-gradient(180deg, #fbfbff 0%, #f3f3fb 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: .78rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--blue);
  background: rgba(75,75,239,.08); padding: .35rem .8rem; border-radius: 999px; margin-bottom: 1rem;
  border-left: 3px solid var(--lime); /* detalle lima minimo */
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; color: var(--navy); }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--slate); max-width: 34ch; }
.hero-points { list-style: none; padding: 0; margin: 1.4rem 0; display: grid; gap: .55rem; }
.hero-points li { display: flex; align-items: center; gap: .6rem; font-weight: 500; color: var(--ink); }
.ck { flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(75,75,239,.12); position: relative; }
.ck::after { content: ""; position: absolute; left: 7px; top: 4px; width: 5px; height: 10px; border: solid var(--blue); border-width: 0 2.4px 2.4px 0; transform: rotate(45deg); }
.trust-mini { display: flex; align-items: center; gap: .7rem; margin-top: .5rem; color: var(--slate); font-size: .95rem; }
.stars { color: #f5a623; letter-spacing: 2px; }

/* ---------- Cotizador (quote card) ---------- */
.quote-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); overflow: hidden;
  animation: floatIn .6s cubic-bezier(.2,.7,.3,1) both;
}
.quote-head { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-600) 100%); color: #fff; padding: 1.3rem 1.6rem; }
.quote-head h2 { color: #fff; font-size: 1.4rem; margin: 0; }
.quote-head p { margin: .2rem 0 0; color: #e3e3fb; font-size: .92rem; }
.quote-head p::before { content: "\25CF "; color: var(--lime); font-size: .7em; vertical-align: middle; } /* punto lima "en linea" */
.quote-form { padding: 1.4rem 1.6rem 1.6rem; }
.field { display: block; margin-bottom: 1rem; }
.field > span, .field-label { display: block; font-size: .85rem; font-weight: 600; color: var(--slate); margin-bottom: .35rem; }
.field input, .field select {
  width: 100%; padding: .8rem .9rem; font: inherit; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 12px; background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(75,75,239,.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.field-hint { font-size: .88rem; color: var(--blue); font-weight: 600; margin: -.3rem 0 .9rem; }
.dias-counter { display: flex; align-items: center; gap: .5rem; margin: 0 0 1rem; padding: .6rem .9rem; border-radius: 12px; background: rgba(75,75,239,.07); border: 1px solid rgba(75,75,239,.18); color: var(--blue); font-weight: 600; font-size: .92rem; font-family: var(--font-display); }
.dias-counter::before { content: "🗓️"; font-size: 1.1rem; }
.dias-counter .dias-num { display: inline-grid; place-items: center; min-width: 26px; height: 26px; padding: 0 .35rem; border-radius: 8px; background: var(--blue); color: #fff; font-weight: 800; }
.quote-foot { text-align: center; font-size: .85rem; color: var(--muted); margin: .8rem 0 0; }

/* ---------- Pasajeros ---------- */
.pax-list { display: grid; gap: .55rem; }
.pax-row { display: flex; align-items: center; gap: .55rem; }
.pax-ico { flex: none; width: 38px; height: 44px; display: grid; place-items: center; background: var(--bg-soft); border: 1.5px solid var(--line); border-radius: 12px; font-size: 1.1rem; }
.pax-edad { flex: 1; }
.pax-del { flex: none; width: 38px; height: 38px; border-radius: 10px; border: 1.5px solid var(--line); background: #fff; color: var(--muted); font-size: 1.3rem; line-height: 1; cursor: pointer; transition: .15s; }
.pax-del:hover { border-color: #e0b4b4; color: #d05656; }
.add-pax { margin-top: .6rem; background: rgba(75,75,239,.06); border: 1.5px dashed rgba(75,75,239,.35); color: var(--blue); font-family: var(--font-display); font-weight: 600; font-size: .9rem; padding: .6rem; border-radius: 12px; width: 100%; cursor: pointer; transition: .15s; }
.add-pax:hover:not(:disabled) { background: rgba(75,75,239,.12); }
.add-pax:disabled { color: var(--muted); border-color: var(--line); background: var(--bg-soft); cursor: default; }

/* ---------- Trustbar ---------- */
.trustbar { border-block: 1px solid var(--line); background: var(--bg-soft); }
.trustbar-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .7rem; padding: 1rem 0; color: var(--muted); font-size: .95rem; }
.trustbar-inner strong { color: var(--navy); font-family: var(--font-display); }
.trustbar .assist { color: var(--blue); }
.trustbar .dot { color: var(--line); }

/* ---------- Secciones genericas ---------- */
section { scroll-margin-top: 80px; }
.section-head { margin-bottom: 2.2rem; }
.section-head.center { text-align: center; max-width: 640px; margin-inline: auto; }
.section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--navy); }
.section-head p { color: var(--slate); font-size: 1.05rem; }
.how, .benefits, .testimonials, .faq { padding: clamp(3rem, 7vw, 5rem) 0; }
.benefits, .faq { background: var(--bg-soft); }

/* ---------- Resultados / planes ---------- */
.results { padding: clamp(2.5rem,6vw,4rem) 0; background: #fff; }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.plan {
  border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.2rem; background: #fff;
  display: flex; flex-direction: column; position: relative; transition: transform .18s, box-shadow .2s, border-color .2s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfcfe6; }
.plan.best { border-color: var(--blue); box-shadow: 0 14px 36px rgba(75,75,239,.18); }
.plan-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: .72rem; font-weight: 700; padding: .25rem .7rem; border-radius: 999px; font-family: var(--font-display); white-space: nowrap; }
.plan-name { font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 1.2rem; }
.plan-cover { color: var(--muted); font-size: .85rem; margin-bottom: .8rem; }
.plan-price { font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 1.9rem; line-height: 1; }
.plan-day { font-size: .82rem; color: var(--muted); margin: .25rem 0 1rem; }
.plan ul { list-style: none; padding: 0; margin: 0 0 1.2rem; display: grid; gap: .5rem; font-size: .9rem; color: var(--slate); }
.plan ul li { display: flex; gap: .45rem; }
.plan ul li::before { content: "\2713"; color: var(--blue); font-weight: 800; }
.plan .btn { margin-top: auto; }
.results-note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 1.4rem; }

/* ---------- Como funciona ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.5rem; box-shadow: var(--shadow-sm); }
.step-num { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-600)); margin-bottom: 1rem; }
.step h3 { color: var(--navy); font-size: 1.2rem; }
.step p { color: var(--slate); margin: 0; }

/* ---------- Beneficios ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.benefit { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; transition: transform .18s, box-shadow .2s; }
.benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.bi { font-size: 1.8rem; margin-bottom: .6rem; }
.benefit h3 { color: var(--navy); font-size: 1.12rem; }
.benefit p { color: var(--slate); margin: 0; font-size: .96rem; }

/* ---------- Testimonios ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; margin: 0; box-shadow: var(--shadow-sm); }
.testi blockquote { margin: .6rem 0 1rem; color: var(--ink); font-size: 1.02rem; }
.testi figcaption { display: flex; align-items: center; gap: .6rem; color: var(--slate); font-size: .92rem; font-weight: 500; }
.avatar { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: rgba(75,75,239,.1); color: var(--blue); font-weight: 700; font-size: .82rem; font-family: var(--font-display); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: .7rem; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: .2rem 1.1rem; }
.faq summary { cursor: pointer; font-family: var(--font-display); font-weight: 600; color: var(--navy); padding: .9rem 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue); font-size: 1.4rem; font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--slate); margin: 0 0 1rem; }

/* ---------- CTA final ---------- */
.cta-final { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%); color: #fff; text-align: center; padding: clamp(3rem, 7vw, 4.5rem) 0; position: relative; overflow: hidden; }
.cta-final::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: var(--lime); } /* franja lima minima (como el manual) */
.cta-final h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.cta-final p { color: #c9c9d4; font-size: 1.1rem; margin-bottom: 1.6rem; }

/* ---------- Footer ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; }
.brand-footer .brand-text { color: var(--navy); }
.footer-note { color: var(--muted); font-size: .9rem; max-width: 36ch; }
.site-footer h4 { color: var(--navy); font-size: 1rem; margin-bottom: .8rem; }
.site-footer a { display: block; color: var(--slate); padding: .25rem 0; }
.site-footer a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--line); padding: 1.2rem 0; color: var(--muted); font-size: .88rem; }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; color: #fff; box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .18s; animation: pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Modal checkout ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1rem; }
.modal[hidden] { display: none; }
.modal-overlay { position: absolute; inset: 0; background: rgba(20,20,20,.55); backdrop-filter: blur(3px); animation: fade .2s; }
.modal-card { position: relative; background: #fff; width: min(520px, 100%); max-height: 92vh; overflow-y: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 1.8rem; animation: floatIn .35s cubic-bezier(.2,.7,.3,1) both; }
.modal-x { position: absolute; top: 14px; right: 16px; background: none; border: 0; font-size: 1.8rem; line-height: 1; color: var(--muted); cursor: pointer; }
.modal-steps { display: flex; gap: .5rem; margin-bottom: 1.2rem; }
.ms { flex: 1; text-align: center; font-size: .82rem; font-weight: 600; color: var(--muted); padding-bottom: .5rem; border-bottom: 2.5px solid var(--line); font-family: var(--font-display); }
.ms.active { color: var(--blue); border-color: var(--blue); }
.co-summary { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.1rem; margin-bottom: 1.2rem; }
.co-summary .row { display: flex; justify-content: space-between; padding: .25rem 0; font-size: .95rem; color: var(--slate); }
.co-summary .row strong { color: var(--ink); }
.co-summary .total { border-top: 1px dashed var(--line); margin-top: .5rem; padding-top: .6rem; font-size: 1.1rem; }
.co-summary .total strong { color: var(--blue); font-family: var(--font-display); font-size: 1.3rem; }
.check-line { display: flex; gap: .55rem; align-items: flex-start; font-size: .9rem; color: var(--slate); margin: .3rem 0 1.1rem; }
.check-line input { margin-top: .2rem; }
.pay-box { text-align: center; }
.pay-amount { background: var(--bg-soft); border-radius: 14px; padding: 1.2rem; margin-bottom: 1rem; }
.pay-amount span { display: block; color: var(--slate); font-size: .9rem; }
.pay-amount strong { font-family: var(--font-display); font-size: 2.2rem; color: var(--navy); }
.pay-text { color: var(--slate); font-size: .96rem; }
.pay-secure { color: var(--muted); font-size: .82rem; margin-top: .8rem; }
.lead-error { margin: .8rem 0 0; padding: .7rem .9rem; border-radius: 10px; background: #fdecec; border: 1px solid #f3c2c2; color: #b3261e; font-size: .9rem; }
.lead-error a { color: #b3261e; font-weight: 700; text-decoration: underline; }
.success { text-align: center; padding: 1rem 0; }
.success-ico { width: 64px; height: 64px; border-radius: 50%; background: rgba(75,75,239,.12); color: var(--blue); display: grid; place-items: center; font-size: 2rem; margin: 0 auto 1rem; }
.success h3 { color: var(--navy); }
.success p { color: var(--slate); }

/* ---------- Página de compra (comprar.html) ---------- */
.checkout { padding: 2rem 0 4rem; background: var(--bg-soft); min-height: 80vh; }
.back-link { display: inline-block; color: var(--slate); font-weight: 600; font-size: .92rem; margin-bottom: .6rem; }
.back-link:hover { color: var(--blue); }
.checkout-title { font-size: clamp(1.6rem, 3.5vw, 2.2rem); color: var(--navy); margin-bottom: 1.5rem; }
.checkout-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.6rem; align-items: start; }
.co-block { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.4rem; box-shadow: var(--shadow-sm); }
.co-block h2 { font-size: 1.2rem; color: var(--navy); margin-bottom: .3rem; }
.co-block h2 span { color: var(--muted); font-weight: 500; font-size: .9rem; }
.co-block-sub { color: var(--slate); font-size: .92rem; margin-bottom: 1rem; }

/* Extras */
.extras-list { display: grid; gap: .7rem; }
.extra-item { display: grid; grid-template-columns: auto auto 1fr auto; align-items: center; gap: .8rem; padding: .9rem 1rem; border: 1.5px solid var(--line); border-radius: 14px; cursor: pointer; transition: border-color .15s, background .15s; }
.extra-item:hover { border-color: #cfcfe6; }
.extra-item.on { border-color: var(--blue); background: rgba(75,75,239,.05); }
.extra-item input { width: 20px; height: 20px; accent-color: var(--blue); cursor: pointer; }
.extra-emoji { font-size: 1.5rem; }
.extra-info { display: flex; flex-direction: column; }
.extra-name { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: .98rem; }
.extra-desc { color: var(--slate); font-size: .85rem; }
.extra-price { font-family: var(--font-display); font-weight: 800; color: var(--blue); white-space: nowrap; }
.extra-check { display: flex; align-items: center; }
.extra-monto { margin-top: .5rem; max-width: 170px; padding: .45rem .6rem; border: 1.5px solid var(--line); border-radius: 10px; font: inherit; color: var(--ink); background: #fff; cursor: pointer; }
.extra-monto:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(75,75,239,.12); }
.extra-monto-fija { display: inline-block; margin-top: .35rem; font-size: .8rem; color: var(--muted); }
.ob-row small { color: var(--muted); font-weight: 500; }

/* Resumen / order card */
.checkout-aside { position: sticky; top: 88px; }
.order-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.order-head { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.3rem; background: linear-gradient(135deg, var(--blue), var(--blue-600)); color: #fff; font-family: var(--font-display); font-weight: 700; }
.order-head .assist-logo { filter: brightness(0) invert(1); opacity: .95; }
.order-body { padding: 1.3rem; }
.ob-plan { display: flex; justify-content: space-between; align-items: baseline; }
.ob-plan-name { font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 1.15rem; }
.ob-plan-price { font-family: var(--font-display); font-weight: 800; color: var(--navy); }
.ob-cover { color: var(--muted); font-size: .85rem; margin-bottom: .8rem; }
.ob-bullets { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: .4rem; font-size: .88rem; color: var(--slate); }
.ob-bullets li { display: flex; gap: .45rem; }
.ob-bullets li::before { content: "\2713"; color: var(--blue); font-weight: 800; }
.ob-rows, .ob-extras { border-top: 1px dashed var(--line); padding-top: .7rem; margin-top: .2rem; }
.ob-row { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; color: var(--slate); padding: .2rem 0; }
.ob-row strong { color: var(--ink); text-align: right; }
.ob-extras-title { font-family: var(--font-display); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: .2rem; }
.order-total { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.3rem; border-top: 1px solid var(--line); font-family: var(--font-display); font-weight: 700; color: var(--navy); }
.order-total strong { font-size: 1.5rem; color: var(--blue); }
.order-note { padding: 0 1.3rem 1.2rem; color: var(--muted); font-size: .78rem; margin: 0; }

/* Pantalla éxito */
.ok-screen { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1.2rem; background: rgba(20,20,20,.55); backdrop-filter: blur(3px); }
.ok-screen[hidden] { display: none; }
.ok-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 2rem; max-width: 440px; text-align: center; animation: floatIn .35s cubic-bezier(.2,.7,.3,1) both; }
.ok-card h2 { color: var(--navy); }
.ok-card p { color: var(--slate); }
.ok-card .btn { margin-top: .5rem; }

/* ---------- Animaciones ---------- */
@keyframes floatIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.45); } 70% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 10px 26px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Logos / assets ---------- */
.assist-logo { height: 24px; width: auto; vertical-align: middle; }
.footer-logo { height: 44px; width: auto; }

/* ---------- Checkout: pasajeros y bloques ---------- */
.form-block-title { font-family: var(--font-display); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 1.3rem 0 .6rem; }
.co-pax { display: grid; gap: .9rem; }
.pax-card { border: 1px solid var(--line); border-radius: 14px; padding: .9rem 1rem; background: var(--bg-soft); }
.pax-card-head { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: .95rem; margin-bottom: .5rem; }
.pax-card-head span { color: var(--muted); font-weight: 500; }
.pax-card .field { margin-bottom: .6rem; }
.pax-card .field:last-child { margin-bottom: 0; }
.hp { position: absolute !important; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .quote-card { order: 2; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .benefit-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-nav { display: none; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-aside { position: static; order: -1; }
}
@media (max-width: 560px) {
  .header-wa span { display: none; }
  .header-wa { padding: .55rem; margin-left: auto; }
  .header-wa svg { width: 20px; height: 20px; }
  .plans-grid, .steps, .benefit-grid, .testi-grid, .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero h1 br { display: none; }
  .extra-item { grid-template-columns: auto 1fr auto; }
  .extra-emoji { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
