﻿/* ==========================================================================
   R10 Travels Ã¢â‚¬â€ Hoja de estilos principal
   Paleta: Azul marino profundo + dorado (inspirada en el logo)
   ========================================================================== */

:root {
  --navy-950: #060f22;
  --navy-900: #0b1b33;
  --navy-800: #122544;
  --navy-700: #1a3358;
  --gold-500: #c9a227;
  --gold-400: #d9b84a;
  --gold-300: #e8cd7a;
  --white: #ffffff;
  --off-white: #f6f4ee;
  --gray-200: #e6e2d6;
  --gray-500: #8a8f9c;
  --text-dark: #16213a;
  --shadow-lg: 0 20px 50px rgba(6, 15, 34, 0.25);
  --radius-lg: 18px;
  --radius-md: 12px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(249, 247, 241, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(11, 27, 51, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 35px rgba(6, 15, 34, 0.08);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 176px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  color: var(--navy-800);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 33px 0 30px;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 22px;
  height: 2px;
  border-radius: 99px;
  background: var(--gold-500);
  transition: right 0.25s ease;
}

.nav-links a:hover,
.nav-links a.is-active { color: var(--navy-950); }
.nav-links a:hover::after,
.nav-links a.is-active::after { right: 0; }

.header-actions { flex: 0 0 auto; }

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--navy-950);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(6, 15, 34, 0.16);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-whatsapp:hover {
  transform: translateY(-2px);
  background: var(--navy-800);
  box-shadow: 0 14px 28px rgba(6, 15, 34, 0.2);
}

.header-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-400);
}

.nav-mobile-whatsapp { display: none; }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(11, 27, 51, 0.14);
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--navy-950);
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero Home ---------- */
.hero {
  position: relative;
  min-height: 860px;
  padding: 154px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 18%, rgba(232, 205, 122, 0.23), transparent 24%),
    linear-gradient(115deg, #fbfaf7 0%, #f5f1e8 52%, #eef2f6 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 88px 0 0;
  opacity: 0.28;
  pointer-events: none;
  background-image: radial-gradient(rgba(11, 27, 51, 0.18) 0.65px, transparent 0.65px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to right, #000 0%, transparent 42%, #000 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 520px;
  height: 520px;
  right: -190px;
  top: 80px;
  background: rgba(201, 162, 39, 0.13);
}

.hero-glow-two {
  width: 380px;
  height: 380px;
  left: 36%;
  bottom: -250px;
  background: rgba(11, 27, 51, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(520px, 1.07fr);
  gap: 72px;
  align-items: center;
}

.hero-copy { padding: 34px 0 72px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: #9b7411;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 6px rgba(201, 162, 39, 0.14);
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-size: clamp(3.25rem, 5.2vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--navy-950);
}

.hero h1 > span {
  display: block;
  margin-top: 8px;
  color: transparent;
  background: linear-gradient(105deg, #a5760c, var(--gold-400) 55%, #b47d0e);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero p.lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: #4e5c71;
  font-size: 1.06rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  min-height: 56px;
  padding-inline: 24px 18px;
  color: var(--navy-950);
  background: linear-gradient(135deg, #f0d580 0%, #c99a22 100%);
  box-shadow: 0 16px 35px rgba(168, 120, 12, 0.23);
}

.btn-gold:hover { box-shadow: 0 20px 42px rgba(168, 120, 12, 0.3); }
.btn-gold svg { width: 20px; height: 20px; fill: currentColor; }
.btn-arrow {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 3px;
  border-radius: 50%;
  background: rgba(6, 15, 34, 0.1);
  font-size: 1.08rem;
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-800);
  font-size: 0.92rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(11, 27, 51, 0.25);
  padding-bottom: 5px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hero-text-link:hover { color: #a5760c; border-color: var(--gold-500); }
.hero-text-link span { font-size: 1.1rem; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(11, 27, 51, 0.1);
}

.hero-proof > div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #697588;
  font-size: 0.75rem;
  line-height: 1.4;
}

.hero-proof svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 9px;
  fill: var(--gold-500);
  background: rgba(201, 162, 39, 0.1);
}

.hero-proof strong { display: block; color: var(--navy-800); font-size: 0.8rem; }

.hero-visual {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 92%;
  height: 88%;
  right: -2%;
  top: 5%;
  z-index: -3;
  border-radius: 48px 48px 130px 48px;
  background:
    radial-gradient(circle at 75% 12%, rgba(232, 205, 122, 0.16), transparent 28%),
    linear-gradient(145deg, #17355e 0%, #0b1b33 50%, #050e20 100%);
  box-shadow: 0 36px 70px rgba(6, 15, 34, 0.26);
}

.hero-visual::after {
  content: '';
  position: absolute;
  width: 86%;
  height: 72%;
  right: 1%;
  top: 12%;
  z-index: -2;
  border-radius: 50%;
  opacity: 0.18;
  background:
    repeating-radial-gradient(circle at 50% 50%, transparent 0 46px, rgba(255,255,255,0.24) 47px 48px),
    linear-gradient(90deg, transparent 49.7%, rgba(255,255,255,0.26) 50%, transparent 50.3%),
    linear-gradient(transparent 49.7%, rgba(255,255,255,0.22) 50%, transparent 50.3%);
  transform: rotate(-12deg);
}

.visual-ring {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(232, 205, 122, 0.2);
  border-radius: 50%;
}
.visual-ring-one { width: 410px; height: 410px; right: 6%; top: 14%; }
.visual-ring-two { width: 510px; height: 250px; right: -3%; top: 26%; transform: rotate(-14deg); }

.journey-card {
  position: relative;
  width: min(100%, 474px);
  margin-left: 8px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 30px 80px rgba(1, 9, 24, 0.34);
}

.journey-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e8e5dc;
}

.journey-label {
  display: block;
  margin-bottom: 6px;
  color: #a5760c;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.journey-card h2 {
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 1.15;
}

.journey-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 7px 9px;
  border-radius: 999px;
  background: #eff7f0;
  color: #356b43;
  font-size: 0.58rem;
  font-weight: 700;
}

.journey-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #55a868;
  box-shadow: 0 0 0 4px rgba(85,168,104,0.13);
}

.route-display {
  display: grid;
  grid-template-columns: 1fr minmax(92px, 1.4fr) 1fr;
  align-items: center;
  gap: 14px;
  padding: 30px 0 24px;
}

.airport strong {
  display: block;
  color: var(--navy-950);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}
.airport span { color: #7c8797; font-size: 0.72rem; }
.airport-right { text-align: right; }

.route-path {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}
.route-path span { height: 1px; background: repeating-linear-gradient(90deg, #c8a13a 0 5px, transparent 5px 9px); }
.route-path svg { width: 27px; height: 27px; fill: var(--gold-500); transform: rotate(4deg); }

.journey-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 13px;
}

.journey-meta > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: #f4f5f6;
}

.meta-icon {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 9px;
  background: var(--white);
  box-shadow: 0 5px 12px rgba(6,15,34,0.07);
}
.meta-icon svg { width: 15px; height: 15px; fill: var(--gold-500); }
.journey-meta small, .journey-card-footer small { display: block; color: #8a93a1; font-size: 0.6rem; }
.journey-meta strong, .journey-card-footer strong { display: block; color: var(--navy-800); font-size: 0.72rem; }

.journey-package {
  padding: 16px;
  border: 1px solid #e5dcc3;
  border-radius: 17px;
  background: linear-gradient(135deg, #fffdf8, #f8f1df);
}
.package-title span { display: block; color: #9b7411; font-size: 0.61rem; text-transform: uppercase; letter-spacing: 0.09em; }
.package-title strong { color: var(--navy-900); font-size: 0.81rem; }
.package-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.package-tags span { padding: 6px 8px; border-radius: 8px; background: rgba(255,255,255,0.85); color: #596579; font-size: 0.61rem; font-weight: 700; }

.journey-card-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding-top: 17px;
}
.advisor-mark {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--gold-300);
  background: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
}
.footer-arrow { color: var(--gold-500); font-size: 1.2rem; }

.floating-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 15px;
  background: rgba(255,255,255,0.93);
  box-shadow: 0 17px 40px rgba(1, 9, 24, 0.2);
}
.floating-chip strong { display: block; color: var(--navy-900); font-size: 0.67rem; }
.floating-chip small { display: block; color: #8791a0; font-size: 0.58rem; }
.chip-icon, .voucher-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: var(--gold-300);
  background: var(--navy-950);
  font-size: 0.65rem;
  font-weight: 800;
}
.chip-support { top: 44px; right: -4px; }
.chip-voucher { bottom: 48px; left: 4px; }
.voucher-icon { background: #050505; color: white; font-size: 0.9rem; }

.hero-services-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 0.75fr);
  align-items: center;
  gap: 18px;
  min-height: 88px;
  margin-top: 8px;
  padding: 20px 28px;
  border-radius: 22px 22px 0 0;
  color: rgba(255,255,255,0.78);
  background: var(--navy-950);
  box-shadow: 0 -14px 35px rgba(6,15,34,0.12);
}
.hero-services-strip > span { color: var(--gold-300); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.hero-services-strip > div { padding-left: 18px; border-left: 1px solid rgba(255,255,255,0.12); font-size: 0.78rem; font-weight: 600; }
.hero-services-strip b { margin-right: 7px; color: var(--gold-400); font-size: 0.62rem; }

/* ---------- Section shared ---------- */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  color: var(--gold-500);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 14px;
  display: block;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--navy-900);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.02rem;
}

/* ---------- Servicios ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-400);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.service-card p { color: var(--gray-500); font-size: 0.95rem; }

/* ---------- Gancho comercial (Uber) ---------- */
.hook-section {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-950));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hook-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hook-grid h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin-bottom: 20px;
}

.hook-grid h2 span { color: var(--gold-400); }

.hook-grid p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 26px;
  font-size: 1.02rem;
}

.uber-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,39,0.4);
  padding: 16px 22px;
  border-radius: var(--radius-md);
}

.uber-badge .amount {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--gold-400);
}

.uber-badge .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}

.hook-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 34px;
}

.hook-card ul li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.hook-card ul li:last-child { border-bottom: none; }

.hook-card ul li .dot {
  color: var(--gold-400);
  font-weight: 800;
}

/* ---------- CTA final ---------- */
.cta-final {
  background: var(--gold-500);
  text-align: center;
  padding: 70px 0;
}

.cta-final h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy-950);
  margin-bottom: 24px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.footer-grid p, .footer-grid a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-bottom: 10px;
}

.footer-grid a:hover { color: var(--gold-300); }

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-legal {
  padding-top: 26px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer-legal strong { color: rgba(255,255,255,0.65); }

/* ---------- WhatsApp flotante ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover { transform: scale(1.08); }

.whatsapp-float svg { width: 30px; height: 30px; }

/* ---------- Formularios (Cotizador / Registro) ---------- */
.form-page {
  padding-top: 140px;
  padding-bottom: 100px;
  min-height: 100vh;
  background: var(--off-white);
}

.form-shell {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  border: 1px solid var(--gray-200);
}

.form-shell h1 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  font-size: 2rem;
  margin-bottom: 10px;
}

.form-shell > p.intro {
  color: var(--gray-500);
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
}

.radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.radio-pill {
  border: 1.5px solid var(--gray-200);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
}

.radio-pill input { display: none; }

.radio-pill.active,
.radio-pill:has(input:checked) {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--navy-800);
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

.form-note {
  margin-top: 22px;
  font-size: 0.82rem;
  color: var(--gray-500);
  text-align: center;
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0f5ff;
  border: 1px solid #d6e4ff;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 0.85rem;
  color: var(--navy-800);
  margin-bottom: 30px;
}

.pending-panel {
  border: 1.5px dashed var(--gold-400);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.92rem;
  background: #fffdf6;
}

.pending-panel strong { display: block; color: var(--navy-900); margin-bottom: 8px; font-size: 1rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}

.form-success.show { display: block; }

.form-success .check {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e9f9ee;
  color: #1e9e4d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1120px) {
  .nav-links { gap: 20px; }
  .header-whatsapp span { display: none; }
  .header-whatsapp { width: 44px; height: 44px; padding: 0; justify-content: center; }
  .hero-grid { grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr); gap: 42px; }
  .chip-support { right: 2px; }
  .chip-voucher { left: -2px; }
}

@media (max-width: 920px) {
  body.nav-open { overflow: hidden; }
  .header-inner { min-height: 78px; }
  .brand-logo { width: 154px; }
  .header-actions { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-links {
    position: fixed;
    inset: 78px 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 26px;
    background: rgba(255,255,255,0.985);
    border-top: 1px solid rgba(11,27,51,0.08);
    box-shadow: 0 24px 40px rgba(6,15,34,0.12);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.25s ease, visibility 0.25s ease;
  }
  .nav-links.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { padding: 15px 4px; border-bottom: 1px solid rgba(11,27,51,0.07); font-size: 0.94rem; }
  .nav-links a::after { display: none; }
  .nav-mobile-whatsapp {
    display: flex !important;
    justify-content: center;
    margin-top: 14px;
    padding: 14px !important;
    border: 0 !important;
    border-radius: 12px;
    color: var(--white) !important;
    background: var(--navy-950);
  }

  .hero { padding-top: 120px; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-copy { max-width: 720px; padding: 22px 0 40px; }
  .hero h1 { max-width: 760px; }
  .hero-visual { width: min(100%, 650px); margin: 0 auto; }
  .hero-services-strip { grid-template-columns: 1fr repeat(4, auto); }
  .hero-services-strip > span { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .hook-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { padding-inline: 18px; }
  .hero { min-height: auto; padding-top: 112px; }
  .hero::before { inset-top: 78px; }
  .hero-copy { padding-top: 10px; }
  .hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.14em; }
  .hero h1 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .hero p.lead { font-size: 0.98rem; line-height: 1.72; }
  .hero-actions { gap: 18px; }
  .btn-gold { width: 100%; }
  .hero-text-link { margin-inline: auto; }
  .hero-proof { align-items: flex-start; gap: 16px; }
  .hero-proof > div { flex: 1; align-items: flex-start; }

  .hero-visual { min-height: 565px; }
  .hero-visual::before { width: 100%; right: 0; border-radius: 34px 34px 90px 34px; }
  .journey-card { width: calc(100% - 22px); margin: 0; padding: 22px; }
  .journey-card-top { flex-direction: column; }
  .journey-status { align-self: flex-start; }
  .floating-chip { transform: scale(0.92); }
  .chip-support { top: 14px; right: -8px; }
  .chip-voucher { bottom: 16px; left: -8px; }
  .visual-ring-two { display: none; }

  .hero-services-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 0;
    padding: 14px 8px;
    border-radius: 18px 18px 0 0;
  }
  .hero-services-strip > div { padding: 10px 14px; border-left: 0; font-size: 0.72rem; }
  .hero-services-strip > div:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.12); }

  .form-page { padding-top: 112px; }
  .form-shell { padding: 30px 22px; }
}

@media (max-width: 520px) {
  .brand-logo { width: 142px; }
  .hero-proof { flex-direction: column; }
  .hero-proof > div { width: 100%; }
  .hero-visual { min-height: 520px; }
  .journey-card { padding: 18px; border-radius: 22px; }
  .journey-card h2 { font-size: 1.2rem; }
  .journey-card-top { padding-bottom: 16px; }
  .route-display { grid-template-columns: 1fr 85px 1fr; gap: 6px; padding-block: 24px 18px; }
  .airport strong { font-size: 1.65rem; }
  .journey-meta { grid-template-columns: 1fr; }
  .journey-package { padding: 13px; }
  .package-tags span { font-size: 0.56rem; }
  .chip-support { display: none; }
  .chip-voucher { display: none; }
}

/* ========================================================================== 
   Cotizador profesional dinÃƒÂ¡mico
   ========================================================================== */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.quote-page {
  padding-top: 132px;
  background:
    radial-gradient(circle at 12% 5%, rgba(230, 190, 78, 0.13), transparent 28%),
    linear-gradient(180deg, #fbfaf6 0%, #f4f6f8 100%);
}

.quote-container {
  max-width: 1240px;
}

.quote-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.quote-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #a77b0d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quote-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 6px rgba(226, 185, 65, 0.15);
}

.quote-heading h1 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1.04;
}

.quote-heading p {
  color: var(--gray-500);
  font-size: 1.02rem;
  line-height: 1.7;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 28px;
}

.quote-main {
  display: grid;
  gap: 22px;
}

.quote-card,
.summary-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(8, 29, 58, 0.09);
  border-radius: 22px;
  box-shadow: 0 15px 45px rgba(7, 25, 51, 0.07);
}

.quote-card {
  padding: 28px;
}

.quote-card-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.step-number {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--navy-950);
  background: linear-gradient(135deg, #f8e39d, #dcae27);
  font-size: 0.72rem;
  font-weight: 800;
}

.quote-card-heading h2 {
  margin: 0 0 4px;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 1.36rem;
  line-height: 1.2;
}

.quote-card-heading p {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.86rem;
}

.trip-type-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.trip-type-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  margin: 0 !important;
  padding: 14px 15px;
  border: 1.5px solid #dde3ea;
  border-radius: 16px;
  background: #fbfcfd;
  cursor: pointer;
  transition: 0.2s ease;
}

.trip-type-option:hover {
  border-color: #c5a33d;
  transform: translateY(-1px);
}

.trip-type-option:has(input:checked) {
  border-color: var(--navy-900);
  background: var(--navy-950);
  color: #fff;
  box-shadow: 0 10px 24px rgba(6, 24, 49, 0.16);
}

.trip-type-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.trip-type-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  color: #9d7411;
  background: #fff5d8;
  font-size: 1.15rem;
  font-weight: 800;
}

.trip-type-option:has(input:checked) .trip-type-icon {
  color: var(--navy-950);
  background: var(--gold-400);
}

.trip-type-option span:last-child {
  display: grid;
  gap: 3px;
}

.trip-type-option strong {
  font-size: 0.87rem;
}

.trip-type-option small {
  color: var(--gray-500);
  font-size: 0.71rem;
  font-weight: 500;
}

.trip-type-option:has(input:checked) small {
  color: rgba(255,255,255,0.62);
}

.route-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
  align-items: end;
  gap: 10px;
}

.date-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 100%;
}

.date-fields:has(.return-date-field[hidden]) {
  grid-template-columns: minmax(0, 1fr);
}

.date-fields:has(.return-date-field[hidden]) > .form-group {
  max-width: calc(50% - 9px);
}

.airport-field {
  position: relative;
}

.airport-input-wrap {
  position: relative;
}

.airport-input-wrap .airport-search {
  padding-left: 42px;
  padding-right: 42px;
}

.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  color: #ad831c;
  font-weight: 800;
  pointer-events: none;
}

.field-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 4;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
  background: #eef1f4;
  font-size: 1rem;
  cursor: pointer;
}

.airport-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 80;
  max-height: 310px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid #dfe4ea;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(7, 25, 51, 0.18);
}

.airport-option {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  width: 100%;
  padding: 11px;
  border: 0;
  border-radius: 11px;
  color: var(--navy-950);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.airport-option:hover,
.airport-option.is-active {
  background: #f5f7fa;
}

.airport-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 9px;
  color: var(--navy-950);
  background: #f5df92;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.airport-option-copy {
  display: grid;
  gap: 2px;
}

.airport-option-copy strong {
  font-size: 0.82rem;
}

.airport-option-copy small {
  color: var(--gray-500);
  font-size: 0.7rem;
  line-height: 1.35;
}

.airport-no-results {
  padding: 16px;
  color: var(--gray-500);
  font-size: 0.8rem;
  text-align: center;
}

.swap-route {
  width: 38px;
  height: 38px;
  margin-bottom: 21px;
  border: 1px solid #dfe3e8;
  border-radius: 50%;
  color: var(--navy-900);
  background: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.swap-route:hover {
  color: #fff;
  border-color: var(--navy-950);
  background: var(--navy-950);
  transform: rotate(180deg);
}

.multi-route-list {
  display: grid;
  gap: 14px;
}

.multi-route-item {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) minmax(0, 1fr) 160px 34px;
  align-items: end;
  gap: 10px;
  padding: 16px;
  border: 1px solid #e2e6eb;
  border-radius: 16px;
  background: #fafbfc;
}

.route-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 23px;
  border-radius: 50%;
  color: #fff;
  background: var(--navy-950);
  font-size: 0.72rem;
  font-weight: 800;
}

.multi-route-item .form-group {
  margin-bottom: 0;
}

.remove-route {
  width: 32px;
  height: 32px;
  margin-bottom: 22px;
  border: 0;
  border-radius: 50%;
  color: #9a3b3b;
  background: #fff0f0;
  font-size: 1rem;
  cursor: pointer;
}

.remove-route:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.add-route-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px dashed #b88d20;
  border-radius: 12px;
  color: #8e6910;
  background: #fffaf0;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
}

.add-route-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.route-limit-note {
  display: inline-block;
  margin-left: 10px;
  color: var(--gray-500);
  font-size: 0.72rem;
}

.toggle-row {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin: 4px 0 0 !important;
  padding-top: 18px;
  border-top: 1px solid #edf0f3;
  cursor: pointer;
}

.toggle-row input {
  position: absolute;
  opacity: 0;
}

.toggle-control {
  position: relative;
  flex: 0 0 auto;
  width: 42px;
  height: 24px;
  border-radius: 99px;
  background: #dce1e6;
  transition: 0.2s ease;
}

.toggle-control::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
  transition: 0.2s ease;
}

.toggle-row input:checked + .toggle-control {
  background: var(--navy-950);
}

.toggle-row input:checked + .toggle-control::after {
  transform: translateX(18px);
  background: var(--gold-400);
}

.toggle-row > span:last-child {
  display: grid;
  gap: 2px;
}

.toggle-row strong {
  color: var(--navy-900);
  font-size: 0.82rem;
}

.toggle-row small {
  color: var(--gray-500);
  font-size: 0.72rem;
}

.preference-row {
  align-items: start;
}

.passenger-field {
  position: relative;
}

.passenger-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 49px;
  padding: 12px 15px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
}

.passenger-trigger:focus,
.passenger-trigger[aria-expanded="true"] {
  outline: none;
  border-color: var(--gold-500);
  background: #fff;
}

.passenger-trigger-icon {
  color: #b2871b;
  font-size: 0.6rem;
  letter-spacing: -2px;
}

.passenger-trigger #passenger-summary {
  flex: 1;
}

.passenger-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 70;
  padding: 14px;
  border: 1px solid #dfe4ea;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(7,25,51,0.18);
}

.passenger-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 2px;
  border-bottom: 1px solid #eef1f4;
}

.passenger-row > div:first-child {
  display: grid;
  gap: 2px;
}

.passenger-row strong {
  color: var(--navy-900);
  font-size: 0.8rem;
}

.passenger-row small {
  color: var(--gray-500);
  font-size: 0.68rem;
}

.counter-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.counter-control button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #d9dfe5;
  border-radius: 50%;
  color: var(--navy-950);
  background: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.counter-control button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.counter-control output {
  min-width: 18px;
  color: var(--navy-950);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.passenger-warning {
  margin: 10px 0 0;
  color: #a14343;
  font-size: 0.7rem;
}

.passenger-done {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--navy-950);
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.extra-option {
  position: relative;
  display: grid !important;
  grid-template-columns: 38px 1fr 20px;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  margin: 0 !important;
  padding: 12px;
  border: 1.5px solid #e0e4e9;
  border-radius: 14px;
  background: #fbfcfd;
  cursor: pointer;
}

.extra-option input {
  position: absolute;
  opacity: 0;
}

.extra-option:has(input:checked) {
  border-color: #c99b20;
  background: #fffaf0;
}

.extra-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  color: #9a7112;
  background: #fff0bd;
}

.extra-option > span:nth-child(3) {
  display: grid;
  gap: 2px;
}

.extra-option strong {
  color: var(--navy-900);
  font-size: 0.79rem;
}

.extra-option small {
  color: var(--gray-500);
  font-size: 0.67rem;
}

.extra-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid #d5dae0;
  border-radius: 50%;
  color: transparent;
  background: #fff;
  font-size: 0.65rem;
}

.extra-option input:checked ~ .extra-check {
  color: #fff;
  border-color: var(--navy-950);
  background: var(--navy-950);
}

.optional-label {
  margin-left: 5px;
  color: var(--gray-500);
  font-size: 0.68rem;
  font-weight: 500;
}

.quote-summary {
  position: sticky;
  top: 105px;
}

.summary-card {
  padding: 26px;
  overflow: hidden;
}

.summary-card::before {
  content: "";
  display: block;
  height: 5px;
  margin: -26px -26px 22px;
  background: linear-gradient(90deg, var(--gold-400), #f4dd89, var(--navy-950));
}

.summary-kicker {
  color: #a77b0d;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.summary-card h2 {
  margin: 7px 0 20px;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 1.45rem;
}

.summary-list {
  margin: 0;
}

.summary-list > div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #edf0f3;
}

.summary-list dt {
  color: var(--gray-500);
  font-size: 0.7rem;
}

.summary-list dd {
  margin: 0;
  color: var(--navy-950);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: right;
  overflow-wrap: anywhere;
}

.summary-help {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  padding: 13px;
  border-radius: 12px;
  background: #f2f7f3;
}

.summary-help > span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: #2f8b50;
  font-size: 0.7rem;
}

.summary-help p {
  margin: 0;
  color: #4e6556;
  font-size: 0.7rem;
  line-height: 1.45;
}

.form-error-summary {
  margin-top: 14px;
  padding: 11px 12px;
  border: 1px solid #e8c2c2;
  border-radius: 10px;
  color: #922f2f;
  background: #fff4f4;
  font-size: 0.72rem;
  line-height: 1.45;
}

.summary-card .form-submit {
  min-height: 52px;
  margin-top: 18px;
}

.summary-card .form-note {
  margin-top: 12px;
  font-size: 0.7rem;
  line-height: 1.5;
}

.quote-success {
  max-width: 620px;
  margin: 0 auto;
  padding: 56px 30px;
  border: 1px solid rgba(8,29,58,0.09);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7,25,51,0.09);
}

.quote-success h2 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 2rem;
}

.quote-success p {
  max-width: 480px;
  margin: 0 auto 24px;
  color: var(--gray-500);
}

.quote-success .btn {
  justify-content: center;
}

.start-over-button {
  display: block;
  margin: 16px auto 0;
  padding: 8px 12px;
  border: 0;
  color: var(--navy-900);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid,
.airport-search.is-invalid,
.passenger-trigger.is-invalid {
  border-color: #c14e4e !important;
  background: #fff8f8 !important;
}

.field-error {
  display: block;
  margin-top: 6px;
  color: #a13e3e;
  font-size: 0.68rem;
}

@media (max-width: 1080px) {
  .quote-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .multi-route-item {
    grid-template-columns: 30px 1fr 1fr;
  }

  .multi-route-item .route-date-group {
    grid-column: 2 / 3;
  }

  .remove-route {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
  }
}

@media (max-width: 920px) {
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .quote-summary {
    position: static;
  }

  .summary-card {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .quote-page {
    padding-top: 108px;
    padding-bottom: 60px;
  }

  .quote-heading {
    margin-bottom: 24px;
    text-align: left;
  }

  .quote-heading h1 {
    font-size: 2.55rem;
  }

  .quote-card {
    padding: 20px 17px;
    border-radius: 18px;
  }

  .quote-card-heading {
    margin-bottom: 20px;
  }

  .trip-type-selector {
    grid-template-columns: 1fr;
  }

  .trip-type-option {
    min-height: 68px;
  }

  .route-fields {
    grid-template-columns: 1fr;
  }

  .swap-route {
    margin: -5px auto 0;
    transform: rotate(90deg);
  }

  .swap-route:hover {
    transform: rotate(270deg);
  }

  .date-fields,
  .date-fields:has(.return-date-field[hidden]) {
    grid-template-columns: 1fr;
  }

  .date-fields:has(.return-date-field[hidden]) > .form-group {
    max-width: none;
  }

  .extras-grid {
    grid-template-columns: 1fr;
  }

  .multi-route-item {
    grid-template-columns: 30px 1fr 34px;
    align-items: start;
  }

  .multi-route-item .form-group {
    grid-column: 2 / 4;
  }

  .multi-route-item .route-index {
    grid-column: 1;
    grid-row: 1;
    margin-top: 25px;
  }

  .multi-route-item .remove-route {
    grid-column: 3;
    grid-row: 1;
    margin: 23px 0 0;
  }

  .multi-route-item .route-date-group {
    grid-column: 2 / 4;
  }

  .route-limit-note {
    display: block;
    margin: 8px 0 0;
  }
}

@media (max-width: 520px) {
  .quote-heading p {
    font-size: 0.9rem;
  }

  .quote-card-heading h2 {
    font-size: 1.18rem;
  }

  .summary-card {
    padding: 22px 18px;
  }

  .summary-card::before {
    margin: -22px -18px 20px;
  }
}
.field-icon { font-family: Arial, Helvetica, sans-serif; font-size: 0.9rem; }


/* ========================================================================== 
   Etapa 03 Ã¢â‚¬â€ Hero dinÃƒÂ¡mico, turismo y privacidad
   ========================================================================== */

/* Hero animado */
.journey-card [data-route-origin-code],
.journey-card [data-route-origin-city],
.journey-card [data-route-destination-code],
.journey-card [data-route-destination-city],
.journey-card [data-route-dates],
.journey-card [data-route-travelers],
.journey-card [data-route-package],
.journey-card [data-route-status] {
  transition: opacity .25s ease, transform .25s ease;
}
.journey-card.is-route-changing [data-route-origin-code],
.journey-card.is-route-changing [data-route-origin-city],
.journey-card.is-route-changing [data-route-destination-code],
.journey-card.is-route-changing [data-route-destination-city],
.journey-card.is-route-changing [data-route-dates],
.journey-card.is-route-changing [data-route-travelers],
.journey-card.is-route-changing [data-route-package],
.journey-card.is-route-changing [data-route-status] {
  opacity: 0;
  transform: translateY(7px);
}
.route-path span {
  position: relative;
  overflow: hidden;
  background: rgba(200,161,58,.18);
}
.route-path span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, #c8a13a 0 5px, transparent 5px 9px);
  transform: scaleX(0);
}
.journey-card.is-route-animating .route-path span:first-child::after { transform-origin: right; animation: r10RouteDraw .85s ease forwards; }
.journey-card.is-route-animating .route-path span:last-child::after { transform-origin: left; animation: r10RouteDraw .85s .72s ease forwards; }
.journey-card.is-route-animating .route-path svg { animation: r10PlaneTravel 1.65s cubic-bezier(.2,.75,.25,1) both; }
@keyframes r10RouteDraw { to { transform: scaleX(1); } }
@keyframes r10PlaneTravel {
  0% { opacity: 0; transform: translateX(-34px) rotate(4deg) scale(.85); }
  20% { opacity: 1; }
  75% { opacity: 1; }
  100% { opacity: 1; transform: translateX(34px) rotate(4deg) scale(1); }
}

/* Tarjeta de servicio destacada */
.service-card-featured {
  position: relative;
  background: linear-gradient(145deg, #fffdf8, #f7f0df);
  border-color: #e4d5aa;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--navy-900);
  font-size: .84rem;
  font-weight: 800;
}
.service-link span { color: var(--gold-500); transition: transform .2s ease; }
.service-link:hover span { transform: translateX(4px); }

/* Turismo */
.tourism-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 4% 5%, rgba(228,187,66,.16), transparent 28%),
    linear-gradient(135deg, #f7f3e9 0%, #fff 54%, #f5f7fa 100%);
}
.tourism-section::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -240px;
  bottom: -220px;
  border: 1px solid rgba(201,162,39,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(201,162,39,.035), 0 0 0 120px rgba(201,162,39,.025);
}
.tourism-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 80px;
  align-items: center;
}
.tourism-copy h2 {
  max-width: 590px;
  margin-bottom: 22px;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.08;
}
.tourism-copy h2 span { color: #b78613; }
.tourism-copy > p { max-width: 590px; color: var(--gray-500); font-size: 1.02rem; line-height: 1.8; }
.tourism-benefits { display: grid; gap: 14px; margin: 30px 0 34px; }
.tourism-benefits li { display: flex; align-items: center; gap: 14px; color: var(--navy-800); font-size: .92rem; font-weight: 650; }
.tourism-benefits span {
  width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto;
  border-radius: 10px; color: #9b7411; background: rgba(232,205,122,.27); font-size: .66rem; font-weight: 850;
}
.tourism-explorer {
  padding: 22px;
  border: 1px solid rgba(13,31,57,.09);
  border-radius: 30px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 28px 65px rgba(7,20,40,.12);
  backdrop-filter: blur(16px);
}
.tourism-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 14px; }
.tourism-tabs button {
  min-height: 48px; padding: 9px 12px; border: 0; border-radius: 13px;
  color: #6d7787; background: #f1f3f5; font: inherit; font-size: .74rem; font-weight: 800; cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.tourism-tabs button:hover { transform: translateY(-2px); }
.tourism-tabs button[aria-selected="true"] { color: var(--gold-300); background: var(--navy-950); }
.tourism-panel {
  min-height: 390px;
  padding: 34px;
  border-radius: 22px;
  color: white;
  background:
    radial-gradient(circle at 86% 12%, rgba(232,205,122,.2), transparent 32%),
    linear-gradient(140deg, #17365f, #08172c 70%);
  transition: opacity .18s ease, transform .18s ease;
}
.tourism-panel.is-changing { opacity: .25; transform: translateY(6px); }
.tourism-panel-kicker { display: block; margin-bottom: 12px; color: var(--gold-300); font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.tourism-panel h3 { max-width: 500px; margin-bottom: 14px; font-family: var(--font-heading); font-size: clamp(1.7rem, 3vw, 2.35rem); }
.tourism-panel p { max-width: 560px; color: rgba(255,255,255,.72); line-height: 1.72; }
.tourism-destinations { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.tourism-destinations span { padding: 8px 12px; border: 1px solid rgba(232,205,122,.28); border-radius: 999px; color: #f4df9e; background: rgba(255,255,255,.05); font-size: .72rem; font-weight: 750; }
.tourism-includes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 0 0 28px; }
.tourism-includes li { padding: 12px; border-radius: 12px; color: rgba(255,255,255,.74); background: rgba(255,255,255,.06); font-size: .72rem; line-height: 1.45; }
.tourism-panel-link { display: inline-flex; gap: 8px; color: white; font-size: .83rem; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.3); }
.tourism-panel-link span { color: var(--gold-300); }
.tourism-note { margin: 13px 6px 0; color: #8b93a0; font-size: .67rem; line-height: 1.5; }

/* Footer legal */
.footer-cookie-button {
  display: block;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  color: rgba(255,255,255,.65);
  background: transparent;
  font: inherit;
  font-size: .88rem;
  text-align: left;
  cursor: pointer;
}
.footer-cookie-button:hover { color: var(--gold-300); }

/* Banner y modal de cookies */
.cookie-banner {
  position: fixed;
  z-index: 1200;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  max-width: 1180px;
  margin: auto;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  color: white;
  background: rgba(6,18,36,.96);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
}
.cookie-banner-copy strong { display: block; margin-bottom: 5px; font-family: var(--font-heading); font-size: 1.08rem; }
.cookie-banner-copy p { max-width: 720px; margin: 0; color: rgba(255,255,255,.72); font-size: .78rem; line-height: 1.55; }
.cookie-policy-links { display: flex; gap: 18px; margin-top: 8px; }
.cookie-policy-links a { color: var(--gold-300); font-size: .72rem; text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions, .cookie-dialog-actions { display: flex; align-items: center; gap: 8px; }
.cookie-button { min-height: 43px; padding: 10px 15px; border-radius: 11px; font: inherit; font-size: .73rem; font-weight: 800; cursor: pointer; }
.cookie-button-primary { border: 1px solid var(--gold-400); color: var(--navy-950); background: var(--gold-400); }
.cookie-button-secondary { border: 1px solid rgba(255,255,255,.22); color: white; background: rgba(255,255,255,.06); }
.cookie-modal { position: fixed; z-index: 1300; inset: 0; display: grid; place-items: center; padding: 20px; }
.cookie-modal-backdrop { position: absolute; inset: 0; background: rgba(1,8,20,.72); backdrop-filter: blur(5px); }
.cookie-dialog { position: relative; z-index: 1; width: min(100%, 650px); max-height: min(86vh, 760px); overflow: auto; padding: 34px; border-radius: 26px; background: white; box-shadow: 0 30px 90px rgba(0,0,0,.3); }
.cookie-dialog-close { position: absolute; top: 16px; right: 18px; width: 38px; height: 38px; border: 0; border-radius: 50%; color: var(--navy-950); background: #f1f3f5; font-size: 1.5rem; cursor: pointer; }
.cookie-dialog-eyebrow { color: #9b7411; font-size: .68rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.cookie-dialog h2 { margin: 8px 0 10px; color: var(--navy-950); font-family: var(--font-heading); font-size: 2rem; }
.cookie-dialog > p { margin-bottom: 24px; color: #6e7887; font-size: .88rem; line-height: 1.6; }
.cookie-category { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; padding: 18px 0; border-top: 1px solid #e9ebee; }
.cookie-category strong { display: block; margin-bottom: 4px; color: var(--navy-900); font-size: .9rem; }
.cookie-category span { color: #788290; font-size: .75rem; line-height: 1.45; }
.cookie-always { padding: 7px 10px; border-radius: 999px; color: #356b43 !important; background: #eaf5ec; font-weight: 800; white-space: nowrap; }
.cookie-category-toggle { position: relative; cursor: pointer; }
.cookie-category-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.cookie-switch { position: relative; width: 48px; height: 27px; border-radius: 999px; background: #cdd2d8; transition: background .2s ease; }
.cookie-switch::after { content: ""; position: absolute; width: 21px; height: 21px; left: 3px; top: 3px; border-radius: 50%; background: white; box-shadow: 0 2px 7px rgba(0,0,0,.18); transition: transform .2s ease; }
.cookie-category-toggle input:checked + .cookie-switch { background: var(--navy-900); }
.cookie-category-toggle input:checked + .cookie-switch::after { transform: translateX(21px); }
.cookie-category-toggle input:focus-visible + .cookie-switch { outline: 3px solid rgba(201,162,39,.35); outline-offset: 3px; }
.cookie-dialog-actions { justify-content: flex-end; padding-top: 22px; border-top: 1px solid #e9ebee; }
.cookie-dialog .cookie-button-secondary { color: var(--navy-900); border-color: #cfd4da; background: white; }
.cookie-modal-open { overflow: hidden; }
body.cookie-banner-visible .whatsapp-float { bottom: 160px; }

/* PÃƒÂ¡ginas legales */
.legal-page { padding: 150px 0 90px; background: linear-gradient(180deg, #fbfaf6, #fff); }
.legal-shell { max-width: 900px; margin: auto; }
.legal-header { margin-bottom: 42px; }
.legal-header h1 { margin: 10px 0 14px; color: var(--navy-950); font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 4rem); }
.legal-header p { color: #727c8b; }
.legal-content { display: grid; gap: 30px; }
.legal-content section { padding: 28px; border: 1px solid #e4e6e9; border-radius: 18px; background: white; }
.legal-content h2 { margin-bottom: 12px; color: var(--navy-900); font-family: var(--font-heading); font-size: 1.35rem; }
.legal-content p, .legal-content li { color: #626d7c; font-size: .9rem; line-height: 1.75; }
.legal-content ul { display: grid; gap: 7px; padding-left: 20px; list-style: disc; }
.legal-notice { padding: 18px 20px; border-left: 4px solid var(--gold-500); border-radius: 0 12px 12px 0; color: #5d6571; background: #fbf4df; font-size: .82rem; line-height: 1.6; }

@media (max-width: 980px) {
  .tourism-grid { grid-template-columns: 1fr; gap: 46px; }
  .cookie-banner { grid-template-columns: 1fr; gap: 16px; }
  body.cookie-banner-visible .whatsapp-float { bottom: 225px; }
}
@media (max-width: 680px) {
  .tourism-section { padding: 78px 0; }
  .tourism-tabs { grid-template-columns: 1fr 1fr; }
  .tourism-panel { min-height: auto; padding: 24px; }
  .tourism-includes { grid-template-columns: 1fr; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 18px; border-radius: 18px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions .cookie-button-primary { grid-column: 1 / -1; }
  .cookie-button { width: 100%; }
  body.cookie-banner-visible .whatsapp-float { bottom: 285px; }
  .cookie-dialog { padding: 28px 20px 22px; }
  .cookie-dialog-actions { display: grid; grid-template-columns: 1fr; }
  .cookie-category { gap: 10px; }
  .legal-page { padding-top: 120px; }
  .legal-content section { padding: 22px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .journey-card.is-route-animating .route-path span::after,
  .journey-card.is-route-animating .route-path svg { animation: none; transform: none; }
  .journey-card *, .tourism-panel { transition-duration: .01ms !important; }
}
/* R10 COOKIE FIX START */
.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

/* Aviso de cookies compacto en la parte inferior */
.cookie-banner {
  left: 50%;
  right: auto;
  bottom: 12px;
  width: min(calc(100% - 28px), 1180px);
  transform: translateX(-50%);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
}

.cookie-banner-copy strong {
  margin-bottom: 3px;
  font-size: .96rem;
}

.cookie-banner-copy p {
  font-size: .72rem;
  line-height: 1.42;
}

.cookie-policy-links {
  margin-top: 5px;
}

.cookie-actions {
  gap: 6px;
}

.cookie-button {
  min-height: 38px;
  padding: 8px 12px;
}

/* ConfiguraciÃƒÂ³n de cookies como panel inferior no bloqueante */
.cookie-modal {
  inset: auto 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 14px 14px;
  pointer-events: none;
}

.cookie-modal-backdrop {
  display: none;
}

.cookie-dialog {
  pointer-events: auto;
  width: min(100%, 720px);
  max-height: min(74vh, 680px);
  padding: 24px 28px 22px;
  border: 1px solid #e4e6e9;
  border-radius: 22px;
  box-shadow: 0 22px 65px rgba(0,0,0,.24);
}

.cookie-modal-open {
  overflow: auto;
}

body.cookie-banner-visible .whatsapp-float {
  bottom: 118px;
}

@media (max-width: 980px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cookie-actions {
    justify-content: flex-end;
  }

  body.cookie-banner-visible .whatsapp-float {
    bottom: 168px;
  }
}

@media (max-width: 680px) {
  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    width: auto;
    transform: none;
    padding: 14px;
  }

  .cookie-actions {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-modal {
    padding: 0 8px 8px;
  }

  .cookie-dialog {
    width: 100%;
    max-height: 78vh;
    padding: 22px 18px 18px;
    border-radius: 20px;
  }

  body.cookie-banner-visible .whatsapp-float {
    bottom: 250px;
  }
}
/* R10 COOKIE FIX END */
/* R10 COOKIES INFERIOR START */

/* Permite que JavaScript oculte correctamente los elementos */
.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

/* Aviso principal de cookies */
.cookie-banner {
  position: fixed;
  z-index: 9999;
  left: 50%;
  right: auto;
  bottom: 12px;
  width: min(1180px, calc(100% - 28px));
  transform: translateX(-50%);
  padding: 14px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border-radius: 16px;
}

/* Panel de configuraciÃ³n siempre abajo */
.cookie-modal {
  position: fixed;
  z-index: 10000;
  inset: auto 0 0 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 14px 14px;
  background: transparent !important;
  pointer-events: none;
}

/* Elimina la capa oscura */
.cookie-modal-backdrop {
  display: none !important;
}

/* Caja de preferencias */
.cookie-dialog {
  position: relative;
  pointer-events: auto;
  width: min(720px, 100%);
  max-height: 70vh;
  overflow-y: auto;
  margin: 0;
  padding: 24px 28px;
  border-radius: 20px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .22);
}

/* No bloquea el scroll ni la navegaciÃ³n */
body.cookie-modal-open {
  overflow: auto !important;
  padding-right: 0 !important;
}

/* Evita que tape el botÃ³n de WhatsApp */
body.cookie-banner-visible .whatsapp-float {
  bottom: 125px;
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    width: auto;
    transform: none;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }

  .cookie-modal {
    padding: 0 8px 8px;
  }

  .cookie-dialog {
    width: 100%;
    max-height: 75vh;
    padding: 22px 18px;
  }

  body.cookie-banner-visible .whatsapp-float {
    bottom: 235px;
  }
}

/* R10 COOKIES INFERIOR END */
/* R10 TYPEWRITER START */
.hero-typewriter {
  position: relative;
  display: block;
  width: 100%;
}

.hero-typewriter-ghost {
  display: block;
  visibility: hidden;
  pointer-events: none;
}

.hero-typewriter-live {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  color: transparent;
  background: linear-gradient(
    105deg,
    #a5760c,
    var(--gold-400) 55%,
    #b47d0e
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-typewriter-caret {
  display: inline-block;
  width: 0.04em;
  height: 0.8em;
  margin-left: 0.07em;
  border-radius: 999px;
  background: #c99d27;
  box-shadow: 0 0 10px rgba(201, 157, 39, 0.22);
  opacity: 0;
  transform: translateY(0.055em);
}

.hero-typewriter.is-typing .hero-typewriter-caret {
  opacity: 1;
  animation: r10-caret-writing 0.9s steps(1, end) infinite;
}

.hero-typewriter.is-complete .hero-typewriter-caret {
  opacity: 1;
  animation: r10-caret-finish 0.78s steps(1, end) 4 forwards;
}

.hero-typewriter.is-finished .hero-typewriter-caret,
.hero-typewriter.is-static .hero-typewriter-caret {
  opacity: 0;
  animation: none;
}

@keyframes r10-caret-writing {
  0%,
  58% {
    opacity: 1;
  }

  59%,
  100% {
    opacity: 0.28;
  }
}

@keyframes r10-caret-finish {
  0%,
  46% {
    opacity: 1;
  }

  47%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-typewriter-caret {
    display: none;
  }
}
/* R10 TYPEWRITER END */
