/* ============================
   ORBITRAVELS — styles.css
   Mobile-first · App-like UI
   ============================ */

/* ===== TOKENS ===== */
:root {
  --navy:     #070D1A;
  --navy-mid: #0D1629;
  --navy-alt: #0a2040;
  --teal:     #00D4C8;
  --teal-dim: rgba(0,212,200,0.1);
  --gold:     #C9A96E;
  --gold-dim: rgba(201,169,110,0.1);
  --white:    #F5F3EF;
  --white-60: rgba(245,243,239,0.6);
  --white-35: rgba(245,243,239,0.35);
  --white-08: rgba(255,255,255,0.08);
  --white-04: rgba(255,255,255,0.04);
  --green-wa: #25D366;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 24px rgba(0,212,200,0.2);
  --font-head: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --nav-h: 64px;
  --bottom-nav-h: 68px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--bottom-nav-h) + var(--safe-bottom));
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== SCROLL PADDING ===== */
section, [id] { scroll-margin-top: calc(var(--nav-h) + 12px); }

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--white-60);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 0;
}
.section-header { margin-bottom: 40px; }
.section-header.text-center { text-align: center; }
.section-header.text-center .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  line-height: 1;
  text-decoration: none;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: linear-gradient(135deg, var(--teal) 0%, #00a896 100%);
  color: var(--navy);
}
.btn--primary:hover { box-shadow: 0 0 20px rgba(0,212,200,0.4); }

.btn--ghost {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid rgba(0,212,200,0.35);
}
.btn--ghost:hover { border-color: var(--teal); background: var(--teal-dim); }

.btn--white {
  background: var(--white);
  color: var(--navy);
}
.btn--white:hover { opacity: 0.92; }

.btn--wa {
  background: var(--green-wa);
  color: #fff;
}
.btn--wa:hover { opacity: 0.9; }

.btn--sm { font-size: 12px; padding: 9px 16px; }
.btn--lg { font-size: 15px; padding: 14px 28px; }
.btn--xl { font-size: 16px; padding: 16px 32px; }

/* ===== FADE UP ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(7,13,26,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--white-04);
  transition: background 0.2s;
}
.nav.scrolled { background: rgba(7,13,26,0.97); }
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav__logo strong { font-weight: 800; }
.nav__logo-orbit { width: 32px; height: 32px; }
.nav__links {
  display: none;
  gap: 28px;
  margin-left: auto;
  margin-right: 8px;
}
.nav__link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--white-60);
  text-decoration: none;
  transition: color 0.15s;
}
.nav__link:hover { color: var(--white); }
.nav__cta { display: none; margin-left: auto; }
.nav__hamburger {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(7,13,26,0.97);
  border-bottom: 1px solid var(--white-08);
  padding: 12px 20px 20px;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link {
  padding: 14px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--white-04);
}
.nav__mobile .btn { margin-top: 16px; width: 100%; justify-content: center; }

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__hamburger { display: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--navy);
  padding: calc(var(--nav-h) + 56px) 20px 0;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.hero__orbs { position: absolute; inset: 0; pointer-events: none; }
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: var(--teal);
  top: -120px; right: -100px;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: #4a1a7a;
  bottom: 0; left: -80px;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: var(--gold);
  top: 40%; left: 40%;
  opacity: 0.12;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 40px;
  align-items: center;
  flex: 1;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,212,200,0.08);
  border: 1px solid rgba(0,212,200,0.25);
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(36px, 7vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.line-accent { color: var(--teal); }
.hero__subtitle {
  font-size: 17px;
  color: var(--white-60);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 28px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--white-60);
}
.hero__trust-item svg { color: var(--teal); flex-shrink: 0; }

.hero__visual { display: none; }
.hero__card {
  background: rgba(13,22,41,0.9);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.hero__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.hero__card-title { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--white-60); }
.hero__card-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(0,212,200,0.1);
  border: 1px solid rgba(0,212,200,0.3);
  color: var(--teal);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.hero__card-products {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.hero__product-chip {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 10px;
  background: var(--white-04);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-sm);
  color: var(--white-60);
  text-align: center;
}
.hero__product-chip--teal { border-color: rgba(0,212,200,0.25); background: var(--teal-dim); color: var(--teal); }
.hero__product-chip--gold { border-color: rgba(201,169,110,0.25); background: var(--gold-dim); color: var(--gold); }
.hero__card-footer {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--white-04);
}
.hero__card-stat { flex: 1; text-align: center; }
.hero__card-stat-val { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--teal); }
.hero__card-stat-label { font-size: 11px; color: var(--white-35); }

.hero__waves {
  margin-top: auto;
  line-height: 0;
}
.hero__waves svg { width: 100%; display: block; }

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1fr 420px; }
  .hero__visual { display: block; }
}

/* ===== PRODUCTOS ===== */
.productos {
  background: var(--navy-mid);
  padding: 80px 0;
}
.productos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.producto-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.producto-card:hover {
  border-color: rgba(0,212,200,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.producto-card--priority {
  border-color: rgba(0,212,200,0.2);
  background: linear-gradient(135deg, rgba(0,212,200,0.04) 0%, transparent 100%);
}
.producto-card__icon {
  font-size: 28px;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--white-04);
  flex-shrink: 0;
}
.producto-card__icon--teal { background: var(--teal-dim); }
.producto-card__icon--green { background: rgba(0,180,80,0.1); }
.producto-card__icon--purple { background: rgba(120,60,180,0.1); }
.producto-card__icon--blue { background: rgba(30,100,210,0.1); }
.producto-card__icon--gold { background: var(--gold-dim); }
.producto-card__body { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.producto-card__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
}
.producto-card__tag--green { color: #00c860; }
.producto-card__tag--purple { color: #9b6fe0; }
.producto-card__name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.producto-card__desc {
  font-size: 12px;
  color: var(--white-60);
  line-height: 1.65;
  flex: 1;
}
.producto-card__cta { align-self: flex-start; margin-top: 8px; }

@media (min-width: 640px) {
  .productos__grid { grid-template-columns: repeat(3, 1fr); }
  .producto-card--priority { grid-column: span 2; flex-direction: row; }
}
@media (min-width: 1024px) {
  .productos__grid { grid-template-columns: repeat(4, 1fr); }
  .producto-card--priority { grid-column: span 1; flex-direction: column; }
}

/* ===== XCARET HOOK ===== */
.xcaret-hook {
  background: var(--navy);
  padding: 80px 0;
  border-top: 1px solid var(--white-04);
}
.xcaret-hook__inner {
  display: grid;
  gap: 48px;
  align-items: center;
}
.xcaret-parks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.xcaret-park {
  background: var(--white-04);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.xcaret-park__icon { font-size: 22px; }
.xcaret-park__name { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--white); }
.xcaret-park__desc { font-size: 11px; color: var(--white-60); }

.xcaret-visual-card {
  background: linear-gradient(135deg, #0a2a20 0%, #0d1629 60%, #0a1a30 100%);
  border: 1px solid rgba(0,212,200,0.2);
  border-radius: var(--radius-xl);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-card), 0 0 40px rgba(0,180,100,0.1);
}
.xcaret-visual-emoji { font-size: 64px; margin-bottom: 12px; }
.xcaret-visual-label {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.xcaret-visual-sub { font-size: 13px; color: var(--white-60); margin-bottom: 20px; }
.xcaret-visual-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  text-align: left;
}
.xcaret-visual-features span { font-size: 13px; color: var(--white-60); }
.xcaret-visual-price { padding-top: 20px; border-top: 1px solid var(--white-04); }
.price-from { font-size: 12px; color: var(--white-35); display: block; }
.price-amount { font-family: var(--font-head); font-size: 36px; font-weight: 800; color: var(--teal); display: block; }
.price-currency { font-size: 12px; color: var(--white-60); }

@media (min-width: 768px) {
  .xcaret-hook__inner { grid-template-columns: 1fr 1fr; }
}

/* ===== PROCESO ===== */
.proceso {
  background: var(--navy-mid);
  padding: 80px 0;
}
.proceso__steps {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}
.paso {
  background: var(--white-04);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.paso__number {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: rgba(0,212,200,0.2);
  margin-bottom: 12px;
  line-height: 1;
}
.paso__title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.paso__desc { font-size: 14px; color: var(--white-60); line-height: 1.7; }
.paso__arrow { display: none; }
.proceso__cta { text-align: center; }

@media (min-width: 768px) {
  .proceso__steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
  }
  .paso__arrow {
    display: block;
    font-size: 28px;
    color: var(--teal);
    opacity: 0.4;
    font-weight: 300;
  }
}

/* ===== BLOG PREVIEW ===== */
.blog-preview {
  background: var(--navy);
  padding: 80px 0;
}
.blog-preview__grid {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}
.blog-card {
  background: var(--white-04);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, transform 0.15s;
}
.blog-card:hover { border-color: rgba(0,212,200,0.3); transform: translateY(-3px); }
.blog-card__thumb {
  height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 48px;
}
.blog-card__thumb--caribe { background: linear-gradient(135deg, #0a3d5c 0%, #00a896 100%); }
.blog-card__thumb--familia { background: linear-gradient(135deg, #0a1a3d 0%, #1a4a9a 100%); }
.blog-card__thumb--guia { background: linear-gradient(135deg, #1a0a3d 0%, #7b4f9a 100%); }
.blog-card__cat {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(7,13,26,0.7);
  color: var(--teal);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}
.blog-card__body { padding: 18px 20px; }
.blog-card__title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 8px;
}
.blog-card__excerpt { font-size: 13px; color: var(--white-60); line-height: 1.6; margin-bottom: 12px; }
.blog-card__meta { font-size: 11px; color: var(--white-35); }
.blog-preview__cta { text-align: center; }

@media (min-width: 768px) {
  .blog-preview__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== SEGUROS ===== */
.seguros {
  background: var(--navy-mid);
  padding: 80px 0;
}
.seguros__inner {
  display: grid;
  gap: 48px;
  align-items: center;
}
.seguros__items { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.seguros__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.seguros__item-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.seguros__item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.seguros__item span { font-size: 13px; color: var(--white-60); }

.seguros__badge {
  background: linear-gradient(135deg, #0a1e40 0%, #0d1629 100%);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  box-shadow: 0 0 40px rgba(201,169,110,0.08);
}
.seguros__badge-icon { font-size: 56px; margin-bottom: 12px; }
.seguros__badge-brand {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}
.seguros__badge-desc { font-size: 13px; color: var(--white-60); margin-bottom: 16px; }
.seguros__badge-price { font-size: 14px; color: var(--white-60); }
.seguros__badge-price strong { color: var(--gold); font-size: 20px; }

@media (min-width: 768px) {
  .seguros__inner { grid-template-columns: 1fr 340px; }
}

/* ===== TESTIMONIOS ===== */
.testimonios {
  background: var(--navy);
  padding: 80px 0;
}
.testimonios__grid {
  display: grid;
  gap: 20px;
}
.testimonio-card {
  background: var(--white-04);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.testimonio-card__stars {
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonio-card__text {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonio-card__author {
  display: flex;
  gap: 12px;
  align-items: center;
}
.testimonio-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.testimonio-card__name { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--white); }
.testimonio-card__origin { font-size: 12px; color: var(--white-35); }

@media (min-width: 768px) {
  .testimonios__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== POR QUÉ ===== */
.porque {
  background: var(--navy-mid);
  padding: 80px 0;
}
.porque__grid {
  display: grid;
  gap: 24px;
}
.porque-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.porque-item__icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--white-04);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.porque-item__title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.porque-item__desc { font-size: 14px; color: var(--white-60); line-height: 1.7; }

@media (min-width: 640px) { .porque__grid { grid-template-columns: 1fr 1fr; } }

/* ===== FAQ ===== */
.faq {
  background: var(--navy);
  padding: 80px 0;
}
.faq__list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--white-08);
}
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}
.faq-item__question:hover { color: var(--teal); }
.faq-item__icon {
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--teal);
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-item__answer { max-height: 200px; }
.faq-item__answer-inner {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.8;
  padding-bottom: 20px;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: var(--navy-mid);
  padding: 80px 0;
}
.cta-final__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-final__title {
  font-family: var(--font-head);
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
}
.cta-final__subtitle {
  font-size: 16px;
  color: var(--white-60);
  margin-bottom: 32px;
  line-height: 1.7;
}
.cta-final__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}
.cta-final__note { font-size: 13px; color: var(--white-35); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--white-08);
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer__brand-desc { font-size: 13px; color: var(--white-35); line-height: 1.75; margin-bottom: 16px; max-width: 300px; }
.footer__socials { display: flex; gap: 12px; }
.footer__social {
  width: 36px; height: 36px;
  background: var(--white-04);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-60);
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s;
}
.footer__social:hover { color: var(--teal); border-color: rgba(0,212,200,0.3); }
.footer__nav-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-35);
  margin-bottom: 16px;
}
.footer__nav-list { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-link {
  font-size: 13px;
  color: var(--white-60);
  text-decoration: none;
  transition: color 0.15s;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font-family: inherit;
}
.footer__nav-link:hover { color: var(--teal); }
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--white-04);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}
.footer__copyright { font-size: 12px; color: var(--white-35); }
.footer__dga { font-size: 12px; color: var(--white-35); }
.footer__dga a { color: var(--teal); }
.footer__dga a:hover { color: #732E8E; }

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: calc(var(--bottom-nav-h) + var(--safe-bottom) + 16px);
  right: 16px;
  width: 52px; height: 52px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

@media (min-width: 768px) {
  .whatsapp-float { bottom: 24px; }
}

/* ===== BOTTOM NAV ===== */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(7,13,26,0.97);
  border-top: 1px solid var(--white-08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 800;
  padding-bottom: var(--safe-bottom);
}
.bottom-nav__list {
  display: flex;
  height: var(--bottom-nav-h);
  align-items: center;
}
.bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--white-35);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}
.bottom-nav__item svg { width: 20px; height: 20px; flex-shrink: 0; }
.bottom-nav__item.active { color: var(--teal); }
.bottom-nav__item:hover { color: var(--white-60); }

.bottom-nav__item--cta {
  flex: 1;
  position: relative;
}
.bn-cta-circle {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--teal) 0%, #00a896 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0,212,200,0.5);
  margin-bottom: -2px;
}
.bn-cta-circle svg { width: 22px; height: 22px; }
.bottom-nav__item--cta { color: var(--teal); }

.bottom-nav__item--wa:hover { color: var(--green-wa); }

@media (min-width: 768px) {
  .bottom-nav { display: none; }
}

/* ===== COTIZAR MODAL ===== */
.cotizar-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  visibility: hidden;
  transition: visibility 0s 0.3s;
}
.cotizar-overlay.open {
  visibility: visible;
  transition-delay: 0s;
}
.cotizar-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.cotizar-overlay.open .cotizar-backdrop { opacity: 1; }

.cotizar-sheet {
  position: relative;
  background: var(--navy-mid);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border-top: 1px solid var(--white-08);
  max-height: 92svh;
  overflow-y: auto;
  padding: 8px 20px calc(20px + var(--safe-bottom));
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.cotizar-overlay.open .cotizar-sheet { transform: translateY(0); }

.cotizar-handle {
  width: 36px; height: 4px;
  background: var(--white-08);
  border-radius: 2px;
  margin: 0 auto 16px;
}
.cotizar-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.cotizar-header__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}
.cotizar-header__sub { font-size: 12px; color: var(--white-35); }
.cotizar-close {
  width: 32px; height: 32px;
  background: var(--white-04);
  border: 1px solid var(--white-08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-60);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
}
.cotizar-close:hover { background: var(--white-08); }

.cotizar-steps {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 0;
}
.cotizar-step {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  background: var(--white-04);
  border: 1px solid var(--white-08);
  color: var(--white-35);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.cotizar-step.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--navy);
}
.cotizar-step.completed {
  background: rgba(0,212,200,0.15);
  border-color: rgba(0,212,200,0.4);
  color: var(--teal);
}
.cotizar-step-line {
  flex: 1;
  height: 1px;
  background: var(--white-08);
  margin: 0 8px;
}

/* ===== FORM STEPS ===== */
.form-step { animation: fadeIn 0.2s ease; }
.form-step.hidden { display: none; }
@keyframes fadeIn { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: translateX(0); } }

.form-step__label {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

/* PRODUCT SELECTOR */
.product-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}
.product-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 8px;
  background: var(--white-04);
  border: 1.5px solid var(--white-08);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-size: 24px;
  min-height: 72px;
}
.product-btn span {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  color: var(--white-60);
  line-height: 1.2;
  text-align: center;
}
.product-btn:hover { border-color: rgba(0,212,200,0.4); background: var(--teal-dim); }
.product-btn.selected {
  border-color: var(--teal);
  background: var(--teal-dim);
  box-shadow: 0 0 12px rgba(0,212,200,0.2);
}
.product-btn.selected span { color: var(--teal); }

/* FORM CONTROLS */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--white-60);
}
.form-optional { font-weight: 400; color: var(--white-35); }
.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--white-08);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-control::placeholder { color: var(--white-35); }
.form-control:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,212,200,0.12);
}
.form-control.invalid { border-color: #e74c3c; }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300D4C8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
select.form-control option { background: #0D1629; color: var(--white); }
textarea.form-control { resize: none; min-height: 72px; }

.form-error {
  font-size: 12px;
  color: #e74c3c;
  display: none;
}
.form-group.has-error .form-error { display: block; }
#errorProduct { display: none; }
#errorProduct.visible { display: block; }

.form-seguro {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--gold-dim);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 16px;
  cursor: pointer;
}
.form-seguro input[type="checkbox"] { margin-top: 2px; accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
.form-seguro__label {
  font-size: 13px;
  color: var(--white-60);
  line-height: 1.6;
  cursor: pointer;
}
.form-seguro__label strong {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2px;
}

.form-nav {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 12px;
  padding-top: 4px;
}
.btn--submit {
  flex: 1;
  justify-content: center;
}
.form-nota {
  font-size: 11px;
  color: var(--white-35);
  text-align: center;
}
.form-nota a { color: var(--white-35); text-decoration: underline; }

.cotizar-success {
  text-align: center;
  padding: 32px 20px;
}
.cotizar-success.hidden { display: none; }
.cotizar-success__icon { font-size: 52px; margin-bottom: 12px; }
.cotizar-success__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.cotizar-success__text { font-size: 14px; color: var(--white-60); margin-bottom: 24px; line-height: 1.7; }

/* HIDDEN UTILITY */
.hidden { display: none !important; }

@media (max-width: 360px) {
  .product-selector { grid-template-columns: repeat(4, 1fr); gap: 7px; }
  .product-btn { padding: 12px 4px; font-size: 20px; min-height: 60px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (min-width: 480px) {
  .cotizar-sheet { padding: 8px 28px calc(24px + var(--safe-bottom)); }
}

@media (min-width: 768px) {
  .cotizar-overlay {
    align-items: center;
    justify-content: center;
  }
  .cotizar-sheet {
    border-radius: var(--radius-xl);
    max-width: 520px;
    width: 100%;
    max-height: 90svh;
    transform: translateY(20px) scale(0.97);
  }
  .cotizar-overlay.open .cotizar-sheet {
    transform: translateY(0) scale(1);
  }
}
