/* ============================================
   REPÚBLICA DOMINICANA INVEST — GLOBAL STYLES
   Premium Dark Marine + Gold Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --bg-primary:     #FFFFFF;
  --bg-secondary:   #F0F9FF; /* Light tropical sky */
  --bg-tertiary:    #E0F2FE; /* Deeper tropical */
  --bg-card:        #FFFFFF;
  --bg-glass:       rgba(255, 255, 255, 0.85);
  --gold:           #0284C7; /* Ocean Blue */
  --gold-light:     #38BDF8; /* Sky Blue */
  --gold-dark:      #0369A1; /* Deep Ocean */
  --gold-glow:      rgba(2, 132, 199, 0.15);
  --blue-deep:      #0F172A;
  --blue-accent:    #14B8A6; /* Tropical Teal */
  --accent-coral:   #FB7185; /* Tropical sunset coral */
  --accent-sand:    #FBBF24; /* Caribbean sand gold */
  --text-primary:   #0F172A; /* Dark for light mode */
  --text-secondary: #475569;
  --text-muted:     #94A3B8;
  --border:         rgba(2, 132, 199, 0.15);
  --border-subtle:  rgba(0, 0, 0, 0.05);
  --shadow-gold:    0 10px 30px rgba(2, 132, 199, 0.15);
  --shadow-card:    0 15px 35px rgba(0, 0, 0, 0.05);
  --shadow-card-lg: 0 25px 60px rgba(2, 132, 199, 0.12);
  --shadow-soft:    0 4px 20px rgba(15, 23, 42, 0.06);
  --radius-sm:      12px;
  --radius-md:      22px;
  --radius-lg:      32px;
  --radius-xl:      44px;
  --transition:     all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast:all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  --nav-height:     80px;

  /* ── Paleta oficial E-Ticket (azul institucional profundo) ── */
  /* Extraída del portal eticketrepublicadom.com — solo afecta al formulario */
  --et-blue:        #1A3A6C; /* Azul oficial de títulos/secciones */
  --et-blue-dark:   #122748; /* Variante más oscura para hover */
  --et-blue-light:  #2A5394; /* Variante más clara */
  --et-blue-glow:   rgba(26, 58, 108, 0.12);
  --et-accent:      #1A3A6C; /* Color de acento: botones, bordes focus */
}

/* ── Override local del formulario E-Ticket: usar la paleta oficial ── */
/* Solo los elementos .et-* dentro de #formulario toman el azul oficial */
.et-form-section {
  --gold:       var(--et-blue);
  --gold-dark:  var(--et-blue-dark);
  --gold-light: var(--et-blue-light);
  --gold-glow:  var(--et-blue-glow);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold), var(--gold-dark));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* Selection */
::selection { background: var(--gold); color: #fff; }

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.loading { overflow: hidden; height: 100vh; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================
   PRELOADER — Animación de carga inicial
   Temática: Ola del Caribe + Sol tropical
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0A1F3C 0%, #0F172A 40%, #0369A1 100%);
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 0.7s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
}
/* Decorative glow */
.preloader::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(56,189,248,0.18), transparent 65%);
  pointer-events: none;
}
/* ============================================
   PRELOADER MAP — Mapa de la República Dominicana
   La isla se "dibuja a sí misma" y se rellena
   ============================================ */
.preloader-scene {
  position: relative;
  width: min(340px, 78vw);
  height: 200px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Soft ocean glow behind the map */
.preloader-scene::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: radial-gradient(ellipse 70% 60% at 55% 50%, rgba(56,189,248,0.22), transparent 65%);
  border-radius: 50%;
  animation: oceanGlow 3.5s ease-in-out infinite;
  pointer-events: none;
}
.rd-map {
  width: 100%;
  height: 100%;
  overflow: visible;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(2,132,199,0.25));
}
/* Island outline that draws itself */
.rd-map .island {
  fill: transparent;
  stroke: #38BDF8;
  stroke-width: 1.6;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawIsland 1.8s cubic-bezier(0.65, 0, 0.35, 1) forwards 0.3s;
}
/* Island fill fades in once the outline is drawn */
.rd-map .island-fill {
  fill: url(#mapGradient);
  opacity: 0;
  animation: fillIsland 0.9s ease forwards 1.9s;
}
/* City location pins */
.rd-map .pin {
  fill: #FBBF24;
  stroke: #fff;
  stroke-width: 1.2;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: pinPop 0.4s ease forwards;
}
.rd-map .pin.p1 { animation-delay: 2.3s; }
.rd-map .pin.p2 { animation-delay: 2.55s; }
.rd-map .pin.p3 { animation-delay: 2.8s; }
/* Expanding ping rings around each pin */
.rd-map .pin-ring {
  fill: none;
  stroke: #FBBF24;
  stroke-width: 1.5;
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  animation: pinPulse 1.9s ease-out infinite;
}
.rd-map .pin-ring.r1 { animation-delay: 2.4s; }
.rd-map .pin-ring.r2 { animation-delay: 2.7s; }
.rd-map .pin-ring.r3 { animation-delay: 3s; }
/* Tiny city labels */
.rd-map .pin-label {
  fill: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: labelFade 0.5s ease forwards;
}
.rd-map .pin-label.l1 { animation-delay: 2.4s; }
.rd-map .pin-label.l2 { animation-delay: 2.65s; }
.rd-map .pin-label.l3 { animation-delay: 2.9s; }
.preloader-text {
  position: relative;
  text-align: center;
  z-index: 2;
}
.preloader-logo-box {
  width: 170px;
  height: 105px;
  margin: 0 auto 1.8rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
}
.preloader-logo-box::before {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35) 0%, rgba(245, 158, 11, 0.2) 50%, transparent 70%);
  animation: auraPulse 2.5s infinite ease-in-out;
  z-index: -1;
}
.preloader-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 35px rgba(56, 189, 248, 0.5);
  animation: preloader3DFloat 3s infinite ease-in-out;
  transform-style: preserve-3d;
}

@keyframes preloader3DFloat {
  0%, 100% {
    transform: perspective(600px) rotateY(-10deg) rotateX(6deg) translateY(0) scale(1);
    filter: drop-shadow(0 10px 25px rgba(245, 158, 11, 0.5));
  }
  50% {
    transform: perspective(600px) rotateY(10deg) rotateX(-6deg) translateY(-10px) scale(1.08);
    filter: drop-shadow(0 20px 45px rgba(56, 189, 248, 0.8));
  }
}

@keyframes auraPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 0.95; }
}
.preloader-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}
.preloader-text h3 .accent { color: #38BDF8; }
.preloader-text p {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.preloader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
}
.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #38BDF8, #FBBF24);
  border-radius: 4px;
  animation: barFill 1.8s ease-in-out infinite;
}
.preloader-percent {
  color: #38BDF8;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.8rem;
  letter-spacing: 0.1em;
}

@keyframes drawIsland {
  0%   { stroke-dashoffset: 1; opacity: 0; }
  15%  { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes fillIsland {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes pinPop {
  0%   { opacity: 0; transform: scale(0); }
  60%  { transform: scale(1.4); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes pinPulse {
  0%   { opacity: 0.9; transform: scale(0.4); }
  100% { opacity: 0; transform: scale(3); }
}
@keyframes labelFade {
  0%   { opacity: 0; transform: translateY(4px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes oceanGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.06); }
}
@keyframes barFill {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 600; }
p { color: var(--text-secondary); line-height: 1.8; }

.gold-text { color: var(--gold); }
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.8rem;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1.2rem; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}

/* ─── NAVIGATION ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 5%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-brand .brand-logo-wrapper {
  position: relative;
  width: 60px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  border: 1.8px solid rgba(56, 189, 248, 0.4);
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.25);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: logoEntrance3D 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  perspective: 500px;
}
.nav-brand .brand-logo-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-25deg);
  animation: logoSweep 3s infinite ease-in-out 1.2s;
}
.nav-brand:hover .brand-logo-wrapper {
  transform: perspective(400px) rotateY(15deg) scale(1.15);
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.5), 0 0 25px rgba(245, 158, 11, 0.5);
  border-color: var(--gold);
}
.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes logoEntrance3D {
  0% { opacity: 0; transform: perspective(500px) rotateY(-40deg) scale(0.3); }
  70% { transform: perspective(500px) rotateY(10deg) scale(1.18); }
  100% { opacity: 1; transform: perspective(500px) rotateY(0deg) scale(1); }
}
@keyframes logoSweep {
  0% { left: -100%; }
  30%, 100% { left: 180%; }
}
.nav-brand .brand-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.1;
}
.nav-brand .brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 4px;
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #FFFFFF !important;
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition) !important;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}
.nav-cta:hover::before { left: 100%; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.5) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
}

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 10s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(3,105,161,0.72) 0%, rgba(2,132,199,0.5) 50%, rgba(20,184,166,0.45) 100%),
    linear-gradient(to top, rgba(10,15,30,0.55), transparent 60%);
}
/* Decorative grain/noise overlay for depth */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  padding-top: var(--nav-height);
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(14px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent-sand);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px var(--accent-sand);
}
.hero h1 { margin-bottom: 1.5rem; text-shadow: 0 2px 30px rgba(0,0,0,0.35); color: #FFFFFF; }
.hero h1 span { color: #FDE68A; } /* Warm sand gold for emphasis */
.hero-description {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-shadow: 0 1px 12px rgba(0,0,0,0.25);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}
.scroll-indicator .mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator .mouse::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 7px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* ─── STAT BAR ─── */
.stat-bar {
  position: relative;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stat-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}
.stat-item {
  padding: 2rem 2.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201,168,76,0.05); }
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.stat-item:hover::after { width: 60%; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .stat-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
}
@media (max-width: 480px) {
  .stat-bar-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ─── SECTIONS ─── */
.section {
  padding: 6rem 5%;
  position: relative;
}
.section-alt { background: var(--bg-secondary); }
.section-alt::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-header h2 { margin-top: 0.5rem; }
.section-header p { font-size: 1.08rem; margin-top: 1rem; }
.section-header .section-label {
  padding-left: 0;
}
.section-header .section-label::before { display: none; }

/* ─── CARDS ─── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}
.card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

/* Glass card */
.card-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}
.card-glass:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 15px 34px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 6px 22px rgba(2, 132, 199, 0.35);
  position: relative;
  overflow: hidden;
  border: none;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(2, 132, 199, 0.5);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 32px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.2);
}
/* Button variant for hero (on dark image) */
.hero .btn-outline {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  backdrop-filter: blur(10px);
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
}

/* ─── GRID LAYOUTS ─── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; align-items: center; }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

/* ─── CITY CARDS ─── */
.city-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.city-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(2, 132, 199, 0.25);
}
.city-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.city-card:hover img { transform: scale(1.1); }
.city-card-overlay {
  position: absolute;
  inset: 0;
  /* Strong gradient so city names are ALWAYS readable */
  background: linear-gradient(
    to top,
    rgba(5, 10, 25, 0.97) 0%,
    rgba(5, 10, 25, 0.75) 40%,
    rgba(5, 10, 25, 0.2) 70%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  transition: var(--transition);
}
.city-card:hover .city-card-overlay {
  background: linear-gradient(
    to top,
    rgba(2, 48, 90, 0.98) 0%,
    rgba(2, 48, 90, 0.8) 45%,
    rgba(2, 48, 90, 0.3) 75%,
    transparent 100%
  );
}
.city-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  color: #FFFFFF;
  background: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 0.6rem;
  width: fit-content;
}
.city-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
}
.city-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.city-card:hover p { max-height: 120px; }

/* Cities grid layout — 3 columns, Punta Cana spans taller */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.city-card--featured {
  grid-row: span 1;
}
@media (max-width: 1024px) {
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cities-grid { grid-template-columns: 1fr; }
  .city-card { height: 300px; }
}

/* ─── GOLD DIVIDER ─── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 1.5rem;
  width: fit-content;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  width: 60px; height: 1.5px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.gold-divider::after { background: linear-gradient(to left, transparent, var(--gold)); }
.gold-divider span {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
}

/* ─── ICON BOX ─── */
.icon-box {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(2,132,199,0.1), rgba(20,184,166,0.08));
  border: 1px solid rgba(2,132,199,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.card:hover .icon-box, .card-glass:hover .icon-box, .institution-card:hover .icon-box {
  background: linear-gradient(135deg, rgba(2,132,199,0.2), rgba(20,184,166,0.15));
  border-color: var(--gold);
  transform: scale(1.08) rotate(-4deg);
}

/* ─── FEATURE LIST ─── */
.feature-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.feature-item p { font-size: 0.88rem; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: #E0F2FE; }
.breadcrumb span { color: rgba(255, 255, 255, 0.7); }

/* ─── PROGRESS BAR ─── */
.progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 0.75rem;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 4px;
  width: 0%;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── LAW CARD ─── */
.law-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.law-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
}
.law-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.law-number {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.benefit-list { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.5rem; }
.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.benefit-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ─── PROCESS STEPS ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  position: relative;
  transition: var(--transition);
}
.process-step:hover { border-color: var(--border); transform: translateY(-4px); }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step h4 { margin-bottom: 0.5rem; font-size: 1rem; }

/* ─── ZONE CARD ─── */
.zone-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.zone-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 30px rgba(201,168,76,0.1);
}
.zone-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.zone-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.zone-card:hover .zone-img img { transform: scale(1.06); }
.zone-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0A0F1E;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.zone-content { padding: 1.8rem; }
.roi-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ─── TABLE ─── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.data-table th {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 1rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border-subtle);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr { background: var(--bg-card); transition: var(--transition); }
.data-table tbody tr:hover { background: rgba(201,168,76,0.04); }
.data-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }

/* ─── FOOTER ─── */
.footer {
  background: #070C18;
  border-top: 1px solid var(--border);
  padding: 4rem 5% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.88rem; max-width: 300px; margin-top: 1rem; }
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── ANIMATIONS ─── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.floating { animation: float 4s ease-in-out infinite; }

/* ─── GOLD GRADIENT TEXT ─── */
.gradient-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── TOOLTIP ─── */
[data-tooltip] { position: relative; }
[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 100;
}
[data-tooltip]:hover::after { opacity: 1; }

/* ─── MOBILE UTILS ─── */
.hidden-mobile { display: block; }
@media (max-width: 768px) {
  .hidden-mobile { display: none; }
  .section { padding: 4rem 5%; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .stat-item { padding: 1.5rem; }
}

/* ─── SCROLL TO TOP ─── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0A0F1E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 500;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,168,76,0.6); }

/* ─── COOKIE / DISCLAIMER BANNER ─── */
.disclaimer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,15,30,0.97);
  border-top: 1px solid var(--border);
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 900;
  backdrop-filter: blur(20px);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.disclaimer.show { transform: translateY(0); }
.disclaimer p { font-size: 0.8rem; max-width: 70%; }
.disclaimer-btn {
  background: var(--gold);
  color: #0A0F1E;
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .disclaimer { flex-direction: column; text-align: center; }
  .disclaimer p { max-width: 100%; }
}

/* ─── WHATSAPP FLOATING ─── */
.whatsapp-float {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

/* ============================================
   E-TICKET SECTION & PAGE
   Formulario digital de migración RD
   ============================================ */
.eticket-feature {
  background: linear-gradient(135deg, #0A1F3C 0%, #0369A1 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.eticket-feature::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(56,189,248,0.25), transparent 70%);
  pointer-events: none;
}
.eticket-feature .et-content { position: relative; z-index: 2; }
.eticket-feature .section-label { color: var(--accent-sand); }
.eticket-feature .section-label::before { background: linear-gradient(to right, var(--accent-sand), transparent); }
.eticket-feature h2 { color: #fff; margin-bottom: 1rem; }
.eticket-feature h2 .gradient-text {
  background: linear-gradient(135deg, #FDE68A, var(--accent-sand));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.eticket-feature p { color: rgba(255,255,255,0.85); }
.eticket-steps {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1.5rem 0;
}
.eticket-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
}
.eticket-step .step-num {
  width: 32px; height: 32px;
  flex-shrink: 0;
  background: rgba(251,191,36,0.15);
  border: 1px solid var(--accent-sand);
  color: var(--accent-sand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
}
/* Mock E-Ticket card */
.eticket-mock {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  transform: rotate(2deg);
  transition: var(--transition);
}
.eticket-mock:hover { transform: rotate(0deg) translateY(-4px); }
.eticket-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(255,255,255,0.25);
  margin-bottom: 1rem;
}
.eticket-mock-header .et-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.eticket-mock-header .et-brand small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--accent-sand);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.et-qr {
  width: 60px; height: 60px;
  background:
    repeating-conic-gradient(#fff 0% 25%, transparent 0% 50%) 50% / 14px 14px,
    #fff;
  border-radius: 8px;
  border: 4px solid #fff;
}
.eticket-mock-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  font-size: 0.8rem;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.eticket-mock-row:last-child { border-bottom: none; }
.eticket-mock-row span:first-child { color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.7rem; }
.eticket-mock-row span:last-child { color: #fff; font-weight: 600; }
@media (max-width: 900px) {
  .eticket-feature { grid-template-columns: 1fr; padding: 2rem; }
  .eticket-mock { transform: rotate(0); }
}

/* Page: E-Ticket form */
.et-form-section { padding: calc(var(--nav-height) + 3rem) 5% 5rem; background: var(--bg-secondary); min-height: 100vh; }
.et-form-wrap { max-width: 860px; margin: 0 auto; }
.et-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-card-lg);
}
.et-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.et-form-row.single { grid-template-columns: 1fr; }
.et-field { display: flex; flex-direction: column; gap: 0.5rem; }
.et-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.et-field label .req { color: var(--accent-coral); }
.et-field input, .et-field select {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.et-field input:focus, .et-field select:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(2,132,199,0.1);
}
.et-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 2.5rem 0 1.2rem;
  padding: 0.9rem 1.2rem;
  background: var(--et-blue);
  border-radius: var(--radius-sm);
  border-left: 5px solid var(--et-blue-light);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.et-section-title:first-child { margin-top: 0; }
.et-section-title .num {
  width: 28px; height: 28px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.et-radio-group { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.et-radio {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 10px 18px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-subtle);
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition-fast);
}
.et-radio input { accent-color: var(--gold); }
.et-radio:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-glow);
  color: var(--gold-dark);
  font-weight: 600;
}
.et-submit-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 600px) {
  .et-form-row { grid-template-columns: 1fr; }
  .et-form { padding: 1.8rem; }
}
.et-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(2,132,199,0.06), rgba(20,184,166,0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-top: 1.5rem;
}
.et-info-card .info-icon { font-size: 1.5rem; flex-shrink: 0; }
.et-info-card p { font-size: 0.85rem; margin: 0; }

/* ── E-Ticket: estilos extendidos para formulario oficial completo ── */

/* Subtítulo dentro de una sección (ej: "Datos del Vuelo", "Hospedaje") */
.et-section-sub {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin: 1.8rem 0 0.3rem;
  padding-left: 0.2rem;
}

/* Bloque de acompañante numerado */
.et-acompanante-block {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  animation: etFadeIn 0.4s ease;
}
.et-passenger-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

/* Animación suave al mostrar campos condicionales */
.et-conditional { animation: etFadeIn 0.35s ease; }
@keyframes etFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Textarea (descripción de mercancías) */
.et-field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  resize: vertical;
  transition: var(--transition-fast);
}
.et-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(2,132,199,0.1);
}

/* Mensaje de éxito tras enviar */
#etSuccess {
  margin-top: 2rem;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(34,197,94,0.10), rgba(20,184,166,0.06));
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-md);
  text-align: center;
  animation: etFadeIn 0.4s ease;
}
#etSuccess .et-success-icon { font-size: 3rem; margin-bottom: 1rem; }
#etSuccess h3 { margin-bottom: 0.5rem; }
#etSuccess p { font-size: 0.92rem; max-width: 500px; margin: 0 auto 1.5rem; color: var(--text-secondary); }

/* Selects con flecha amigable en móvil */
.et-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230369A1' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* ─── SPECTACULAR DR MAP HYPER-ZOOM INTRO & CURTAIN REVEAL ─── */
#intro-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: auto;
  font-family: 'Inter', sans-serif;
  background: #0B1120;
}
#intro-loader.hidden-intro {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease 0.8s;
  display: none !important;
}

/* Split Curtains */
.intro-curtain-left,
.intro-curtain-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 50.5%;
  background: radial-gradient(circle at center, #1E293B 0%, #0B1120 100%);
  z-index: 1;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}
.intro-curtain-left {
  left: 0;
  border-right: 2px solid rgba(56, 189, 248, 0.4);
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
}
.intro-curtain-right {
  right: 0;
  border-left: 2px solid rgba(56, 189, 248, 0.4);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.intro-curtain-left::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: -2px;
  width: 4px;
  background: linear-gradient(180deg, #F59E0B, #38BDF8, #F59E0B);
  box-shadow: 0 0 20px #38BDF8, 0 0 40px #F59E0B;
}

#intro-loader.opening .intro-curtain-left {
  transform: translateX(-105%);
}
#intro-loader.opening .intro-curtain-right {
  transform: translateX(105%);
}

/* Center Content */
.intro-center {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  max-width: 550px;
}

/* DR Map 3D Hyper-Zoom Container */
.intro-map-exact-wrapper {
  position: relative;
  width: 580px;
  max-width: 90vw;
  margin-bottom: 1.8rem;
  border-radius: 24px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.45), rgba(2, 132, 199, 0.15), rgba(245, 158, 11, 0.4));
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(56, 189, 248, 0.45);
  transition: transform 1.4s cubic-bezier(0.65, 0, 0.35, 1), opacity 1s ease;
  transform-origin: 60% 55%;
  perspective: 1000px;
  will-change: transform, opacity;
  animation: introMapAppear 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#intro-loader.zooming .intro-map-exact-wrapper {
  transform: scale(1.25);
  opacity: 0;
}

.intro-exact-map-img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Location Radar Pins on DR Map */
.intro-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 20;
}
.intro-pin-punta-cana { top: 52%; left: 88%; }
.intro-pin-santo-domingo { top: 68%; left: 58%; }

.pin-dot {
  width: 12px;
  height: 12px;
  background: #F59E0B;
  border-radius: 50%;
  box-shadow: 0 0 16px #F59E0B, 0 0 25px #38BDF8;
  position: relative;
}
.pin-ripple {
  position: absolute;
  inset: -8px;
  border: 2px solid #38BDF8;
  border-radius: 50%;
  animation: introRipple 1.8s infinite ease-out;
}
.pin-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  background: rgba(11, 17, 32, 0.85);
  padding: 3px 8px;
  border-radius: 50px;
  border: 1px solid rgba(56, 189, 248, 0.4);
  opacity: 0;
  animation: introFadeUp 0.6s ease forwards 0.8s;
}

/* Text & Subtitles */
.intro-text-box {
  transition: opacity 0.5s ease, transform 0.5s ease;
}
#intro-loader.zooming .intro-text-box {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
}
.intro-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
  opacity: 0;
  animation: introFadeUp 0.7s ease forwards 0.4s;
}
.intro-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #38BDF8;
  text-transform: uppercase;
  opacity: 0;
  animation: introFadeUp 0.7s ease forwards 0.7s;
}

/* Skip Button */
.intro-skip-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 30;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.95);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.3s ease;
}
.intro-skip-btn:hover {
  background: rgba(56, 189, 248, 0.25);
  border-color: #38BDF8;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
}

@keyframes introMapAppear {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(25px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes introFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes introRipple {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .intro-map-exact-wrapper {
    width: 320px;
  }
  .intro-title {
    font-size: 1.4rem;
  }
  .intro-subtitle {
    font-size: 0.72rem;
  }
}

