/* Tipografías alojadas en el sitio (licencia OFL): sin peticiones a Google */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(assets/fonts/figtree-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Frank Ruhl Libre';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(assets/fonts/frank-ruhl-libre-hebrew.woff2) format('woff2');
  unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url(assets/fonts/newsreader-latin-italic.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 300 400;
  font-display: swap;
  src: url(assets/fonts/newsreader-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Hineni Travel — estilos
   Paleta tomada del logo: azul noche #0E1F3B, dorado #C8A04A, blanco frío #F4F6FA */

:root {
  --navy: #0E1F3B;
  --navy-2: #15294A;
  --navy-3: #1E3660;
  --navy-deep: #0A172C;
  --gold: #C8A04A;
  --gold-deep: #7D5F19;
  --ice: #F4F6FA;
  --cream: #F3EEE3;
  --paper: #FBFAF6;
  --ink: #0E1F3B;
  --ink-soft: #46546B;
  --line: rgba(14, 31, 59, .14);
  --line-dark: rgba(244, 246, 250, .18);
  --wa: #0E7C3F;
  --white: #fff;
  --error: #A43D2F;
  --gold-hover: #D6B160;
  --note-bg: #FFE9A8;
  --note-ink: #5A4300;

  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --r: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--gold); color: var(--navy); padding: 10px 16px; border-radius: 8px; z-index: 100; font-weight: 600; }
.skip:focus { left: 8px; }

:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; border-radius: 4px; }
.site-header :focus-visible, .hero :focus-visible, .page-hero :focus-visible, .section-navy :focus-visible, .cta-band :focus-visible, .name-band :focus-visible, .site-footer :focus-visible, .dd-menu :focus-visible, .skip:focus-visible { outline-color: var(--gold); }
.form :focus-visible { outline-color: var(--navy); }
.step legend:focus { outline: none; }

/* ---------- Tipografía ---------- */
h1, h2 { font-family: var(--serif); font-weight: 300; letter-spacing: -.015em; line-height: 1.06; }
h1 { font-size: clamp(2.75rem, 7.2vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h1 em, h2 em { font-style: italic; font-weight: 300; color: inherit; }
/* El dorado queda para los títulos de entrada: hero, portadas y cierre */
.hero h1 em, .page-hero h1 em, .name-band h2 em { color: var(--gold); }
h3 { font-family: var(--sans); font-weight: 600; font-size: 1.2rem; line-height: 1.3; }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.25rem); line-height: 1.6; max-width: 38em; }

.eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.eyebrow-dark { color: var(--gold-deep); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 28px; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active { transform: scale(.97); }
.btn-gold { background: var(--gold); color: var(--navy); }
@media (hover: hover) and (pointer: fine) { .btn-gold:hover { background: var(--gold-hover); } }
.btn-ghost { border-color: rgba(244,246,250,.4); color: var(--ice); }
@media (hover: hover) and (pointer: fine) { .btn-ghost:hover { border-color: var(--ice); background: rgba(244,246,250,.08); } }
.btn-outline { border-color: var(--navy); color: var(--navy); }
@media (hover: hover) and (pointer: fine) { .btn-outline:hover { background: var(--navy); color: var(--ice); } }
.btn-block { width: 100%; }
.ico { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }

.link-arrow {
  display: inline-block; margin-top: 22px; font-weight: 600; color: var(--navy);
  text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 2px;
}
.link-arrow::after { content: " →"; }
@media (hover: hover) and (pointer: fine) { .link-arrow:hover { color: var(--gold-deep); } }

/* ---------- Anuncio y header ---------- */
.announce { background: var(--gold); color: var(--navy); text-align: center; font-size: .9rem; font-weight: 500; padding: 9px var(--gutter); }
.announce a { font-weight: 700; }

.site-header { position: sticky; top: 0; z-index: 50; background: var(--navy); border-bottom: 1px solid var(--line-dark); }
.header-in { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 24px; }
.brand img { width: 168px; height: auto; }
.nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 32px); }
.nav a { color: var(--ice); text-decoration: none; font-size: .95rem; font-weight: 500; opacity: .86; }
@media (hover: hover) and (pointer: fine) { .nav a:hover { opacity: 1; } }
.nav .nav-cta { background: var(--gold); color: var(--navy); opacity: 1; padding: 10px 20px; border-radius: 999px; font-weight: 600; }
@media (hover: hover) and (pointer: fine) { .nav .nav-cta:hover { background: var(--gold-hover); } }
.menu-btn { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy); color: var(--ice); overflow: hidden; padding: clamp(56px, 9vw, 120px) 0 clamp(64px, 9vw, 120px); }
.hero-arcs { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-arcs circle, .hero-arcs path { fill: none; stroke: rgba(244,246,250,.16); stroke-width: 1.2; stroke-dasharray: 5 7; }
.hero-arcs path { stroke: rgba(200,160,74,.5); }
.hero-arcs .dot { fill: var(--gold); stroke: none; stroke-dasharray: none; }
.hero-arcs .dot-halo { fill: rgba(200,160,74,.2); stroke: none; stroke-dasharray: none; }

.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.hero-copy .lead { margin-top: 28px; color: rgba(244,246,250,.82); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-facts { margin-top: 44px; display: grid; gap: 10px; font-size: .95rem; color: rgba(244,246,250,.72); }
.hero-facts li { padding-left: 22px; position: relative; }
.hero-facts li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

.proposal { background: var(--ice); color: var(--navy); border-radius: 20px; padding: 28px 28px 24px; box-shadow: 0 16px 28px -18px rgba(0,0,0,.55); transform: rotate(1.6deg); }
.proposal-tag { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--gold-deep); }
.proposal h2 { font-size: 1.6rem; margin: 8px 0 18px; font-weight: 400; }
.proposal ol { border-top: 1px solid var(--line); }
.proposal li { display: grid; grid-template-columns: 96px 1fr; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.proposal li span { font-weight: 600; }
.proposal li em { font-style: normal; color: var(--ink-soft); }
.proposal-total { margin-top: 18px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: .85rem; color: var(--ink-soft); }
.proposal-total strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; color: var(--navy); }

/* ---------- Secciones ---------- */
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section-navy { background: var(--navy); color: var(--ice); }
.section-cream { background: var(--cream); }
.sec-head { max-width: 780px; margin-bottom: clamp(36px, 6vw, 64px); }

/* Nombre */
.name-band { background: var(--navy-2); color: var(--ice); padding: clamp(56px, 8vw, 96px) 0; border-top: 1px solid var(--line-dark); }
.name-grid { display: grid; grid-template-columns: auto 1fr; gap: clamp(28px, 6vw, 88px); align-items: center; }
.hebrew { font-family: "Frank Ruhl Libre", var(--serif); font-weight: 300; font-size: clamp(4.5rem, 12vw, 9rem); line-height: 1; color: var(--gold); }
.name-band h2 { margin-bottom: 20px; }
.name-band p:not(.eyebrow) { max-width: 40em; color: rgba(244,246,250,.82); }
.name-band .eyebrow { color: var(--gold); }

/* Perfiles */
.profiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 0; border-top: 1px solid var(--line); }
.profile { display: block; text-decoration: none; padding: 28px 24px 32px 0; border-bottom: 1px solid var(--line); transition: background-color .25s; }
.profile-n { font-family: var(--serif); font-size: 1rem; color: var(--gold-deep); }
.profile h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; margin: 10px 0 10px; }
.profile p { color: var(--ink-soft); font-size: .98rem; }
@media (hover: hover) and (pointer: fine) { .profile:hover h3 { color: var(--gold-deep); } }

/* Servicios */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(28px, 6vw, 88px); }
.services li { display: grid; grid-template-columns: 56px 1fr; gap: 12px; padding: 30px 0; border-top: 1px solid var(--line-dark); }
.svc-n { font-family: var(--serif); font-size: 2.2rem; color: var(--gold); line-height: 1; font-weight: 300; }
.services h3 { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; margin-bottom: 8px; }
.services p { color: rgba(244,246,250,.75); max-width: 30em; }

/* Destinos */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dest {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 300px;
  padding: 26px; border-radius: 18px; text-decoration: none; color: var(--ice); overflow: hidden; isolation: isolate;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.dest::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(to top, rgba(14,31,59,.9) 0%, rgba(14,31,59,.6) 34%, rgba(14,31,59,0) 68%), linear-gradient(to bottom, rgba(14,31,59,.5) 0%, rgba(14,31,59,0) 28%), var(--photo, none), var(--bg); background-size: cover; background-position: center; }
.dest::after {
  content: ""; position: absolute; z-index: -1; width: 380px; height: 380px; border-radius: 50%;
  right: -120px; top: -120px; border: 1.2px dashed rgba(244,246,250,.28);
  background: radial-gradient(circle, rgba(244,246,250,.04) 0 62%, rgba(244,246,250,.02) 62% 100%);
}
@media (hover: hover) and (pointer: fine) { .dest:hover { transform: translateY(-5px); } }
.dest h3 { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; letter-spacing: -.01em; }
.dest p { margin-top: 6px; font-size: .95rem; color: rgba(244,246,250,.78); }
.dest-lat { position: absolute; top: 20px; left: 22px; font-family: var(--serif); font-style: italic; font-size: 1rem; line-height: 1; color: var(--ice); background: rgba(14,31,59,.72); padding: 7px 12px; border-radius: 999px; }
.dest-badge { position: absolute; top: 22px; right: 22px; font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); background: var(--gold); padding: 5px 10px; border-radius: 999px; }
.d-caribe { --photo: url(assets/fotos/caribe.jpg); --bg: linear-gradient(160deg, #0E4A5C 0%, var(--navy) 85%); }
.d-usa    { --photo: url(assets/fotos/estados-unidos.jpg); --bg: linear-gradient(160deg, #23306B 0%, var(--navy) 85%); }
.d-europa { --photo: url(assets/fotos/europa.jpg); --bg: linear-gradient(160deg, #3A2F5E 0%, var(--navy) 85%); }
.d-medio  { --photo: url(assets/fotos/medio-oriente.jpg); --bg: linear-gradient(160deg, #6B4A1F 0%, var(--navy) 88%); }
.d-sur    { --photo: url(assets/fotos/sudamerica.jpg); --bg: linear-gradient(160deg, #1F5A46 0%, var(--navy) 85%); }
.d-otro   { --photo: none; --bg: var(--cream); color: var(--navy); border: 1.5px dashed rgba(14,31,59,.35); }
.d-otro::after { display: none; }
.d-otro::before { border-radius: inherit; background: var(--cream); }
.d-otro p, .d-otro .dest-lat { color: var(--ink-soft); }
.d-otro h3 { color: var(--navy); }

/* Pasos */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: s; position: relative; }
.steps li { padding: 0 28px 0 0; position: relative; }
.steps li::before { content: ""; position: absolute; top: 26px; left: 56px; right: 8px; border-top: 1.5px dashed rgba(14,31,59,.28); }
.steps li:last-child::before { display: none; }
.step-n { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--serif); font-size: 1.5rem; margin-bottom: 22px; position: relative; }
.steps h3 { margin-bottom: 8px; }
.steps p { color: var(--ink-soft); font-size: .98rem; }
.steps-note { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--ink-soft); max-width: 46em; }

/* Grupos */
.groups-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.groups .lead { margin: 24px 0; color: rgba(244,246,250,.8); }
.checks { display: grid; gap: 12px; margin-bottom: 36px; }
.checks li { padding-left: 32px; position: relative; }
.checks li::before { content: ""; position: absolute; left: 0; top: .35em; width: 18px; height: 10px; border-left: 2.5px solid var(--gold); border-bottom: 2.5px solid var(--gold); transform: rotate(-45deg) scale(.8); transform-origin: left top; top: .55em; left: 3px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0; }
.stats div { border: 1px solid var(--line-dark); border-radius: 16px; padding: 24px 20px; }
.stats dt { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 300; color: var(--gold); line-height: 1; }
.stats dd { margin: 10px 0 0; font-size: .9rem; color: rgba(244,246,250,.75); }

/* Salidas */
.trips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trip { border: 1.5px solid var(--navy); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 6px; background: var(--paper); }
.trip-meta { font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }
.trip h3 { font-family: var(--serif); font-size: 2rem; font-weight: 400; margin: 4px 0 8px; }
.trip-date { color: var(--ink-soft); }
.trip-price { margin-top: 14px; color: var(--ink-soft); }
.trip-price strong { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; color: var(--navy); }
.trip-seats { font-size: .88rem; font-weight: 600; color: var(--error); margin-bottom: 18px; }
.trip .btn { margin-top: auto; }

/* Escala */
.layover { background: var(--ice); padding: clamp(64px, 9vw, 112px) 0; }
.layover-in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.layover h2 { margin-bottom: 20px; }
.layover p:not(.eyebrow) { color: var(--ink-soft); max-width: 34em; }
.layover-card { background: var(--navy); color: var(--ice); border-radius: 20px; padding: 28px; }
.layover-tag { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--gold); margin-bottom: 14px; }
.layover-card li { display: grid; grid-template-columns: 64px 1fr; padding: 13px 0; border-top: 1px solid var(--line-dark); font-size: .98rem; }
.layover-card li span { font-family: var(--serif); font-size: 1.15rem; color: var(--gold); }

/* Por qué */
.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.why > div { padding-top: 22px; border-top: 2px solid var(--gold); }
.why h3 { margin-bottom: 8px; }
.why p { color: var(--ink-soft); font-size: .98rem; }
.section-navy .why p { color: rgba(244,246,250,.8); }

/* Testimonios */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { margin: 0; background: var(--cream); border-radius: 18px; padding: 32px 28px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; }
.quote blockquote { margin: 0; font-family: var(--serif); font-size: 1.28rem; line-height: 1.45; font-weight: 300; }
.quote blockquote::before { content: "“"; display: block; font-size: 3.4rem; line-height: .6; color: var(--gold-deep); margin-bottom: 8px; }
.quote figcaption strong { display: block; font-weight: 600; }
.quote figcaption span { font-size: .9rem; color: var(--ink-soft); }

/* FAQ */
.faq-wrap { max-width: 860px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 44px 22px 0; font-family: var(--serif); font-size: 1.4rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-size: 1.6rem; color: var(--gold-deep); transition: transform .25s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 44px 24px 0; color: var(--ink-soft); }

/* Formulario */
.quote-sec { position: relative; overflow: hidden; }
.quote-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.quote-intro .lead { margin: 24px 0 36px; color: rgba(244,246,250,.8); }
.contact-list { display: grid; gap: 20px; }
.contact-list li { border-top: 1px solid var(--line-dark); padding-top: 16px; }
.contact-list span { display: block; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; font-weight: 600; }
.contact-list a { font-size: 1.15rem; text-decoration: none; word-break: break-word; }
@media (hover: hover) and (pointer: fine) { .contact-list a:hover { color: var(--gold); } }
.contact-list p { color: rgba(244,246,250,.8); font-size: .98rem; }

.form { background: var(--ice); color: var(--navy); border-radius: 22px; padding: clamp(22px, 4vw, 40px); display: grid; gap: 18px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 6px; }
.field-small { max-width: 220px; }
.field label { font-size: .88rem; font-weight: 600; }
.field label small { font-weight: 400; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; border: 1.5px solid rgba(14,31,59,.55); border-radius: 10px;
  background: var(--white); font-size: 1rem; /* 16px mínimo: evita el zoom en iOS */ transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(200,160,74,.35); }
.field input[aria-invalid="true"] { border-color: var(--error); }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-status { min-height: 1.4em; font-size: .95rem; font-weight: 500; }
.form-status a { font-weight: 700; }
.form-status.err { color: var(--error); }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: -8px; }

/* Footer */
.site-footer { background: var(--navy-deep); color: rgba(244,246,250,.78); padding: 72px 0 0; font-size: .95rem; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; }
.foot-tag { margin-top: 18px; font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--ice); max-width: 16em; }
.site-footer h2 { font-family: var(--sans); font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { text-decoration: none; }
@media (hover: hover) and (pointer: fine) { .site-footer a:hover { color: var(--gold); } }
.foot-legal { margin-top: 56px; padding: 24px 0 96px; border-top: 1px solid var(--line-dark); font-size: .82rem; color: rgba(244,246,250,.55); }

/* WhatsApp flotante */
.wa-float {
  position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); z-index: 60;
  display: inline-flex; align-items: center; gap: 10px; min-height: 56px; padding: 0 22px 0 18px;
  background: var(--wa); color: var(--white); border-radius: 999px; text-decoration: none; font-weight: 600;
  box-shadow: 0 10px 28px -6px rgba(0,0,0,.4); transition: transform .2s;
}
@media (hover: hover) and (pointer: fine) { .wa-float:hover { transform: translateY(-2px); } }
.wa-float:active { transform: scale(.96); }
.wa-float .ico { width: 26px; height: 26px; }

/* ---------- Interruptor de contenido inventado (solo revisión) ---------- */
.dev-toggle {
  position: fixed; left: 16px; bottom: max(16px, env(safe-area-inset-bottom)); z-index: 60;
  background: var(--white); color: var(--navy); border: 1.5px solid var(--navy); border-radius: 999px;
  padding: 10px 16px; font-size: .8rem; font-weight: 600; cursor: pointer; box-shadow: 0 6px 20px -6px rgba(0,0,0,.35);
}
.dev-toggle[aria-pressed="true"] { background: var(--navy); color: var(--ice); }

/* Etiqueta visible "Ejemplo" sobre lo inventado */
.ej { position: relative; }
.ej::after {
  content: "Ejemplo"; position: absolute; top: 10px; right: 12px; z-index: 3;
  font: 700 .7rem/1 var(--sans); letter-spacing: .1em; text-transform: uppercase;
  background: var(--note-bg); color: var(--note-ink); padding: 4px 8px; border-radius: 999px; pointer-events: none;
}
.d-caribe.ej::after, .stats .ej::after { display: none; }

/* Ocultar todo lo inventado de una vez: añade la clase "sin-inventado" al <body>
   (o abre la página con ?sin-inventado). */
body.sin-inventado [data-inventado="true"] { display: none !important; }
body.sin-inventado .hero-grid { grid-template-columns: minmax(0, 1fr); }
body.sin-inventado .hero-copy { max-width: 760px; }
body.sin-inventado .groups-grid { grid-template-columns: minmax(0, 1fr); }
body.sin-inventado .layover-in { grid-template-columns: minmax(0, 1fr); }
body.sin-inventado .why { grid-template-columns: repeat(3, 1fr); }
body.sin-inventado .announce { display: none; }

/* ---------- Animación de entrada ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal:nth-child(2) { transition-delay: .06s; }
.js .reveal:nth-child(3) { transition-delay: .12s; }
.js .reveal:nth-child(4) { transition-delay: .18s; }
.js .reveal:nth-child(5) { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .dest, .btn, .wa-float { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid, .groups-grid, .layover-in, .quote-grid { grid-template-columns: 1fr; }
  .proposal { transform: none; max-width: 520px; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .trips, .quotes { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .steps li::before { display: none; }
  .why, body.sin-inventado .why { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .menu-btn { display: grid; place-content: center; gap: 7px; width: 48px; height: 48px; background: none; border: 0; cursor: pointer; margin-right: -10px; }
  .menu-btn span { display: block; width: 26px; height: 2px; background: var(--ice); transition: transform .25s; }
  .menu-btn[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-btn[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .nav {
    position: fixed; inset: 68px 0 0 0; background: var(--navy); flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px var(--gutter) 40px; overflow-y: auto; transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s;
  }
  .nav.open { opacity: 1; transform: none; visibility: visible; }
  .nav a { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; padding: 18px 0; border-bottom: 1px solid var(--line-dark); opacity: 1; }
  .nav .nav-cta { margin-top: 24px; text-align: center; font-family: var(--sans); font-size: 1.05rem; border-bottom: 0; padding: 16px; }
}

@media (max-width: 820px) {
  .services { grid-template-columns: 1fr; }
  .name-grid { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 620px) {
  body { font-size: 1rem; }
  .brand img { width: 144px; }
  .row { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest { min-height: 220px; }
  .steps { grid-template-columns: 1fr; }
  .why, body.sin-inventado .why { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-row .btn { width: 100%; }
  .stats { grid-template-columns: 1fr 1fr; }
  .proposal li { grid-template-columns: 84px 1fr; }
  .wa-float { padding: 0; width: 58px; min-height: 58px; justify-content: center; }
  .wa-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .dev-toggle { font-size: .72rem; padding: 8px 12px; bottom: max(84px, env(safe-area-inset-bottom)); }
}


/* ============ Cotizador por pasos ============ */
.form.stepper .step { display: none; }
.form.stepper .step.active { display: grid; }
.step { border: 0; padding: 0; margin: 0; display: grid; gap: 18px; min-width: 0; }
.step legend { padding: 0; margin-bottom: 4px; font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 1.9rem); font-weight: 400; line-height: 1.15; }
.step-count { display: block; font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px; }
.step-hint { font-size: .92rem; color: var(--ink-soft); margin-top: -8px; }
.progress { display: none; gap: 6px; }
.form.stepper .progress { display: grid; grid-template-columns: repeat(5, 1fr); }
.progress span { height: 4px; border-radius: 4px; background: rgba(14,31,59,.15); transition: background-color .3s; }
.progress span.done { background: var(--gold); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.chip span { display: inline-flex; align-items: center; min-height: 46px; padding: 0 18px; border: 1.5px solid rgba(14,31,59,.55); border-radius: 999px; background: var(--white); font-weight: 500; font-size: .98rem; transition: background-color .15s, border-color .15s, color .15s; }
@media (hover: hover) and (pointer: fine) { .chip:hover span { border-color: var(--navy); } }
.chip input:checked + span { background: var(--navy); border-color: var(--navy); color: var(--ice); }
.chip input:focus-visible + span { outline: 3px solid var(--navy); outline-offset: 2px; }
.chips-sm .chip span { min-height: 40px; padding: 0 14px; font-size: .9rem; }
.chips-sm .chip input:checked + span { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.countries { display: grid; gap: 14px; padding-top: 6px; border-top: 1px dashed rgba(14,31,59,.25); }
.countries[hidden], .chips[hidden] { display: none; }
.countries-title { font-weight: 600; font-size: .92rem; margin-top: 14px; }
.form-nav { display: flex; gap: 12px; }
.form-nav .btn[hidden] { display: none; }
.form-nav .btn-next, .form-nav .btn-send { flex: 1; }
.btn-back { background: transparent; border-color: rgba(14,31,59,.3); color: var(--navy); }
@media (hover: hover) and (pointer: fine) { .btn-back:hover { border-color: var(--navy); } }
.form-error { color: var(--error); font-weight: 500; font-size: .95rem; }
.form-error[hidden] { display: none; }
.form-note a { color: inherit; }
.form:not(.stepper) .form-nav .btn-next, .form:not(.stepper) .form-nav .btn-back { display: none; }
.form:not(.stepper) { gap: 26px; }

/* ============ Páginas interiores ============ */
.page-hero { position: relative; background: var(--navy) var(--photo, none) center / cover; color: var(--ice); overflow: hidden; padding: clamp(48px, 8vw, 104px) 0 clamp(56px, 8vw, 104px); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(14,31,59,.94) 0%, rgba(14,31,59,.86) 42%, rgba(14,31,59,.42) 100%); }
.page-hero .hero-arcs, .page-hero-in { position: relative; }
.page-hero .hero-arcs { position: absolute; }
.page-hero-in { max-width: 860px; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.2; }
.page-hero .lead { margin-top: 24px; color: rgba(244,246,250,.82); }
.crumbs { font-size: .85rem; margin-bottom: 28px; color: rgba(244,246,250,.82); }
.crumbs a { text-decoration: none; }
@media (hover: hover) and (pointer: fine) { .crumbs a:hover { color: var(--gold); } }
.crumbs-dark { color: var(--ink-soft); }
@media (hover: hover) and (pointer: fine) { .crumbs-dark a:hover { color: var(--gold-deep); } }

.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px 32px; }
.feat { padding-top: 20px; border-top: 2px solid var(--gold); }
.feat h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin-bottom: 8px; }
.feat p { color: var(--ink-soft); font-size: .98rem; }
.section-navy .feat p { color: rgba(244,246,250,.75); }

.sample { background: var(--cream); border-radius: 20px; padding: clamp(22px, 4vw, 40px); max-width: 780px; }
.sample-wide { max-width: none; }
.sample-title { font-family: var(--serif); font-size: 1.7rem; margin-bottom: 4px; }
.sample-meta { color: var(--ink-soft); margin-bottom: 8px; }
.days { margin-top: 18px; }
.days li { display: grid; grid-template-columns: 92px 1fr; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); }
.days .day { font-family: var(--serif); font-size: 1.1rem; color: var(--gold-deep); }
.days h3 { margin: 0 0 2px; font-size: 1rem; font-weight: 600; }
.days p { color: var(--ink-soft); font-size: .95rem; }
.sample .btn { margin-top: 20px; }
.page-note { padding-bottom: 72px; color: var(--ink-soft); font-size: .9rem; }

.exp { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.exp .dest { min-height: 200px; }
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 22px; }
.timeline li { border-top: 2px solid var(--gold); padding-top: 18px; }
.timeline li > span { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.timeline h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin: 6px 0; }
.timeline p { color: rgba(244,246,250,.75); font-size: .95rem; }
.link-arrow-light { color: var(--ice); margin-top: 24px; }
.section-navy .link-arrow { color: var(--ice); }

.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.member { background: var(--cream); border-radius: 18px; padding: 28px 24px; }
.avatar { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: var(--gold); font-family: var(--serif); font-size: 1.5rem; margin-bottom: 16px; }
.member h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.role { font-size: .85rem; font-weight: 600; color: var(--gold-deep); margin: 2px 0 10px; }
.member p:last-child { color: var(--ink-soft); font-size: .95rem; }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0 32px; margin: 0; }
.facts div { border-top: 1px solid var(--line); padding: 16px 0; }
.facts dt { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.facts dd { margin: 4px 0 0; }

.guides { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.guide { display: flex; flex-direction: column; gap: 8px; text-decoration: none; padding: 28px; border-radius: 18px; border: 1.5px solid var(--navy); background: var(--paper); transition: background-color .2s; }
@media (hover: hover) and (pointer: fine) { .guide:hover { background: var(--cream); } }
.guide h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.guide p { color: var(--ink-soft); font-size: .96rem; }
.guide .link-arrow { margin-top: auto; align-self: flex-start; }
.article { max-width: 760px; }
.article h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.08; margin-bottom: 18px; }
.article .lead { color: var(--ink-soft); margin-bottom: 36px; }
.article section { padding: 22px 0; border-top: 1px solid var(--line); }
.article h2 { font-family: var(--sans); font-weight: 600; font-size: 1.15rem; letter-spacing: 0; line-height: 1.3; margin-bottom: 6px; }
.article p { color: var(--ink-soft); }
.article a { color: var(--gold-deep); font-weight: 600; }
.notice { background: var(--note-bg); color: var(--note-ink); padding: 12px 16px; border-radius: 10px; font-size: .92rem; margin-bottom: 28px; }

.foot-links { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 6px 22px; }
.foot-links a { text-decoration: none; }
@media (hover: hover) and (pointer: fine) { .foot-links a:hover { color: var(--gold); } }

.notfound { min-height: 100vh; min-height: 100svh; background: var(--navy); color: var(--ice); display: grid; align-content: center; justify-items: start; gap: 22px; padding: 40px var(--gutter); }
.notfound h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
.notfound h1 em { color: var(--gold); }
.notfound p { color: rgba(244,246,250,.8); }

.hero-single { grid-template-columns: minmax(0, 1fr); }
.hero-single .hero-copy { max-width: 800px; }
.en-links { display: flex; align-items: center; gap: 20px; }
.en-links a { color: var(--ice); text-decoration: none; font-size: .95rem; }
.contact-wide { max-width: 640px; }
.en-note { border-color: var(--line-dark); color: rgba(244,246,250,.7); }

body.sin-inventado .exp { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1000px) { .exp { grid-template-columns: 1fr; } }
@media (max-width: 620px) {
  .days li { grid-template-columns: 1fr; gap: 2px; }
  .form-nav { flex-direction: column-reverse; }
  .chip span { min-height: 48px; }
}

/* ============ Menús desplegables ============ */
.dd { position: relative; }
.dd-btn { background: none; border: 0; padding: 0; cursor: pointer; color: var(--ice); font-size: .95rem; font-weight: 500; opacity: .86; display: inline-flex; align-items: center; gap: 6px; }
.dd-btn::after { content: ""; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s; }
.dd.open .dd-btn { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .dd-btn:hover { opacity: 1; } }
.dd.open .dd-btn::after { transform: rotate(-135deg) translateY(-1px); }
.dd-menu { position: absolute; top: calc(100% + 18px); left: -16px; min-width: 240px; background: var(--navy); border: 1px solid var(--line-dark); border-radius: 14px; padding: 8px; box-shadow: 0 8px 14px -8px rgba(0,0,0,.5); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s, transform .18s, visibility .18s; }
.dd.open .dd-menu { opacity: 1; visibility: visible; transform: none; }
.dd-menu a { display: block; padding: 11px 14px; border-radius: 8px; opacity: 1; }
@media (hover: hover) and (pointer: fine) { .dd-menu a:hover { background: rgba(244,246,250,.08); color: var(--gold); } }

/* ============ Cotizador: fechas y buscador ============ */
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 5px; background: rgba(14,31,59,.08); border-radius: 999px; }
.seg-opt { position: relative; cursor: pointer; }
.seg-opt input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.seg-opt span { display: flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 12px; border-radius: 999px; font-weight: 600; font-size: .92rem; text-align: center; transition: background-color .2s, color .2s; }
.seg-opt input:checked + span { background: var(--navy); color: var(--ice); }
.seg-opt input:focus-visible + span { outline: 3px solid var(--navy); outline-offset: 2px; }
.mode { display: grid; gap: 18px; }
.mode[hidden] { display: none; }
.check { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-size: .95rem; line-height: 1.4; }
.check input { width: 22px; height: 22px; margin: 0; accent-color: var(--navy); flex: none; }
.field input[type="date"] { min-height: 50px; }
.field select:disabled { opacity: .5; }
.combo { position: relative; }
.combo-list { position: absolute; z-index: 20; left: 0; right: 0; top: 100%; margin-top: 4px; background: var(--white); border: 1.5px solid var(--navy); border-radius: 12px; overflow: hidden; box-shadow: 0 6px 12px -6px rgba(14,31,59,.45); }
.combo-list[hidden] { display: none; }
.combo-list li { padding: 12px 14px; cursor: pointer; font-size: 1rem; }
@media (hover: hover) and (pointer: fine) { .combo-list li.active, .combo-list li:hover { background: var(--cream); } }
.tag { border: 0; cursor: pointer; background: var(--gold); color: var(--navy); border-radius: 999px; padding: 8px 14px; font-size: .9rem; font-weight: 600; }
@media (hover: hover) and (pointer: fine) { .tag:hover { background: var(--gold-hover); } }
.extra-empty:empty { display: none; }
#extraChips:empty { display: none; }

/* ============ Banda de llamado a la acción ============ */
.cta-band { background: var(--navy); color: var(--ice); padding: clamp(56px, 8vw, 88px) 0; border-top: 1px solid var(--line-dark); }
.cta-band-in { display: flex; align-items: center; justify-content: space-between; gap: 32px 56px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); max-width: 16em; }
.cta-band h2 em { color: var(--gold); }
.cta-band p { margin-top: 12px; color: rgba(244,246,250,.78); max-width: 34em; }
.cta-band .cta-row { margin-top: 0; }

/* ============ Ajustes de las páginas reordenadas ============ */
.quote-page { padding-top: clamp(48px, 7vw, 96px); }
.quote-page h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
.quote-page h1 em { color: var(--gold); }
.profiles-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.section-cream .profiles { border-top-color: rgba(14,31,59,.2); }
.services-light li { border-top-color: var(--line); }
.services-light .svc-n { color: var(--gold-deep); }
.services-light p { color: var(--ink-soft); }
.services-light .link-arrow { margin-top: 12px; font-size: .92rem; }
.section-navy .services .link-arrow, .section-navy > .wrap > .link-arrow { margin-top: 36px; }
.stats-light { max-width: 900px; grid-template-columns: repeat(4, 1fr); }
.layover-in .lead { color: var(--ink-soft); }
.layover-in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 6vw, 72px); align-items: center; }

body.sin-inventado .why { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1000px) { .stats-light { grid-template-columns: 1fr 1fr; } .layover-in { grid-template-columns: 1fr; } }
@media (max-width: 980px) {
  .dd { border-bottom: 1px solid var(--line-dark); padding: 14px 0 6px; }
  .dd-btn { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; opacity: 1; pointer-events: none; }
  .dd-btn::after { display: none; }
  .dd-menu { position: static; opacity: 1; visibility: visible; transform: none; background: none; border: 0; box-shadow: none; padding: 4px 0 8px 4px; min-width: 0; }
  .dd-menu a { font-family: var(--sans); font-size: 1.05rem; padding: 10px 0; border-bottom: 0; color: rgba(244,246,250,.8); }
  @media (hover: hover) and (pointer: fine) { .dd-menu a:hover { background: none; } }
}
@media (max-width: 620px) {
  .seg-opt span { font-size: .85rem; min-height: 48px; }
  .cta-band .cta-row .btn { width: 100%; }
}

body.menu-open .wa-float, body.menu-open .dev-toggle { display: none; }

/* ============ Viajeros, buscador y presupuesto ============ */
.label { font-size: .88rem; font-weight: 600; }
.label small { font-weight: 400; color: var(--ink-soft); }
.counters { display: grid; gap: 4px; }
.counter { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); }
.counter:first-child { border-top: 0; }
.counter-label { display: grid; line-height: 1.25; }
.counter-label label { font-family: var(--serif); font-size: 1.3rem; }
.counter-label small { color: var(--ink-soft); font-size: .82rem; }
.stepper-ctl { display: flex; align-items: center; gap: 8px; flex: none; }
.step-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--navy); background: var(--white); color: var(--navy); font-size: 1.4rem; line-height: 1; cursor: pointer; display: grid; place-items: center; padding: 0 0 2px; transition: background-color .15s, color .15s; }
@media (hover: hover) and (pointer: fine) { .step-btn:hover { background: var(--navy); color: var(--ice); } }
.step-btn:active { transform: scale(.94); }
.stepper-ctl input { width: 60px; min-height: 44px; text-align: center; padding: 0 4px; border: 1.5px solid rgba(14,31,59,.55); border-radius: 10px; background: var(--white); font-size: 1.05rem; font-weight: 600; -moz-appearance: textfield; appearance: textfield; }
.stepper-ctl input::-webkit-outer-spin-button, .stepper-ctl input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.stepper-ctl input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(200,160,74,.35); }
.ages { display: grid; gap: 10px; padding: 14px 16px; background: var(--cream); border-radius: 14px; }
.ages[hidden] { display: none; }
.ages-title { font-weight: 600; font-size: .92rem; }
.ages-title small { font-weight: 400; color: var(--ink-soft); }
.ages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px 12px; }
.ages-grid .field label { font-weight: 500; font-size: .82rem; }
.ages-grid select { min-height: 44px; padding: 8px 10px; }
.ages-grid select[aria-invalid="true"] { border-color: var(--error); }

.combo-row { display: flex; gap: 8px; }
.combo-row input { flex: 1; min-width: 0; }
.btn-add { min-height: 50px; padding: 0 20px; background: var(--navy); color: var(--ice); flex: none; }
@media (hover: hover) and (pointer: fine) { .btn-add:hover { background: var(--navy-3); } }
.combo-list { top: 74px; }
.combo-list li { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.combo-list li small { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.combo-list li.combo-free { border-top: 1px solid var(--line); color: var(--gold-deep); font-weight: 600; }
.combo .step-hint { margin-top: 2px; }


/* ============ Ronda de revisión: accesibilidad, ritmo y celular ============ */
::selection { background: var(--gold); color: var(--navy); }
input, textarea, select { caret-color: var(--navy); accent-color: var(--navy); }
a { text-underline-offset: 3px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Zonas táctiles de al menos 44 px */
.brand { display: flex; align-items: center; min-height: 44px; }
.link-arrow { padding: 12px 0 4px; min-height: 44px; }
.site-footer li { margin-bottom: 0; }
.site-footer li a, .contact-list a { display: inline-block; padding: 11px 0; }
.foot-links a { display: inline-block; padding: 12px 0; }
.foot-legal { padding-bottom: 96px; }

/* Botón flotante: aparece tras el primer pantallazo y no compite con el formulario */
.js .wa-float { opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity .3s, transform .3s; }
.js .wa-float.show { opacity: 1; transform: none; pointer-events: auto; }
.page-cotizar .wa-float { display: none; }

/* Errores por campo */
.field-error { color: var(--error); font-size: .85rem; font-weight: 500; }

/* Bloque humano bajo el hero */
.person { background: var(--cream); padding: 28px 0; }
.person-in { display: flex; align-items: center; gap: 20px 28px; flex-wrap: wrap; }
.avatar-lg { width: 84px; height: 84px; position: relative; margin: 0; flex: none; overflow: hidden; }
.avatar-lg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.person-text { flex: 1; min-width: 240px; }
.person-line { font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 1.7rem); line-height: 1.25; }
.person-text p:last-child { color: var(--ink-soft); font-size: .95rem; margin-top: 4px; }
.person.ej::after { top: 8px; }

/* Servicios: filas, no tarjetas */
.services { display: block; }
.services li { display: grid; grid-template-columns: minmax(200px, .8fr) 1.2fr; gap: 6px 40px; align-items: baseline; padding: 26px 0; border-top: 1px solid var(--line-dark); }
.services li:last-child { border-bottom: 1px solid var(--line-dark); }
.services h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0; }
.services p { max-width: 36em; }
.services-light li { border-top-color: var(--line); }
.services-light li:last-child { border-bottom-color: var(--line); }
@media (max-width: 720px) { .services li { grid-template-columns: 1fr; } }

/* Destinos: mosaico con tamaños distintos */
.dest-grid { grid-template-columns: repeat(6, 1fr); }
.dest-lg { grid-column: span 3; min-height: 380px; }
.dest-md { grid-column: span 2; min-height: 260px; }
.dest-wide { grid-column: 1 / -1; min-height: 0; flex-direction: row; align-items: center; justify-content: space-between; gap: 8px 32px; flex-wrap: wrap; padding: 26px; }
.dest-wide p { margin-top: 0; max-width: 30em; }
.dest-lg h3 { font-size: 3rem; }
@media (max-width: 1000px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-lg { grid-column: span 2; min-height: 300px; }
  .dest-md { grid-column: span 1; min-height: 220px; }
  .d-sur { grid-column: span 2; }
}
@media (max-width: 620px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-lg, .dest-md, .d-sur, .dest-wide { grid-column: auto; min-height: 220px; }
  .dest-wide { min-height: 0; }
  .dest-lg h3 { font-size: 2.4rem; }
}

/* Cotizador: en celular el formulario va primero y los datos de contacto después */
.quote-page .quote-grid { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); grid-template-areas: "intro form" "contact form"; align-items: start; row-gap: 24px; }
.quote-page .quote-intro { grid-area: intro; }
.quote-page .form { grid-area: form; }
.quote-page .quote-contact { grid-area: contact; align-self: start; }
.quote-page .quote-intro .lead { margin: 20px 0 0; }
@media (max-width: 1000px) {
  .quote-page .quote-grid { grid-template-columns: minmax(0, 1fr); grid-template-areas: "intro" "form" "contact"; }
  .quote-page .quote-intro h1 { font-size: 2.2rem; }
  .quote-page .quote-intro .lead { margin-top: 12px; font-size: 1.02rem; }
}


/* ============ Accesibilidad: zonas táctiles de 44 px ============ */
.nav a:not(.nav-cta), .dd-btn { padding: 10px 4px; }
.chips-sm .chip span { min-height: 44px; }
.tag { min-height: 44px; }
.form-note a { display: inline-block; padding: 12px 0; }
.foot-links a { padding: 12px 6px; }
@media (max-width: 980px) { .nav a:not(.nav-cta) { padding: 18px 0; } }


/* ============ Sensación nativa en celular ============ */
button, a, [role="button"], summary, label.chip, label.seg-opt, .step-btn { touch-action: manipulation; }
button, .chip, .seg-opt, .step-btn, .tag, .dd-btn, .menu-btn { user-select: none; -webkit-user-select: none; -webkit-touch-callout: none; }
.nav, .combo-list { overscroll-behavior: contain; }

/* Respuesta al tocar (los estados :hover ya solo aplican con ratón) */
.chip:active span, .seg-opt:active span, .tag:active { transform: scale(.97); }
.chip span, .seg-opt span { transition: background-color .15s, border-color .15s, color .15s, transform .1s; }
.dest:active, .profile:active, .guide:active { transform: scale(.985); }
.dest, .profile, .guide { transition: transform .12s; }
.nav a:active, .dd-menu a:active { opacity: .7; }
.menu-btn:active { transform: scale(.94); }

/* Muescra y barra de inicio en horizontal */
.wrap { width: min(100% - max(var(--gutter), env(safe-area-inset-left, 0px)) - max(var(--gutter), env(safe-area-inset-right, 0px)), var(--wrap)); }
.nav { padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px)); }
