/* 
 * Alta Ruta Ejecutiva - Hoja de Estilos Premium
 * Estilo: Lujo Sobrio (Quiet Luxury) / Brochure Digital
 */

/* ==========================================================================
   1. VARIABLES DE DISEÑO (DESIGN TOKENS)
   ========================================================================== */
:root {
  /* Paleta de colores */
  --color-bg-deep: #09090b;       /* Negro absoluto con leve tinte frío */
  --color-bg-card: #121216;       /* Gris carbón premium para tarjetas */
  --color-bg-card-hover: #181820; /* Color de tarjeta al hacer hover */
  
  --color-gold: #c5a880;          /* Dorado Champagne */
  --color-gold-hover: #d5b992;    /* Dorado Champagne más brillante */
  --color-gold-light: rgba(197, 168, 128, 0.1);
  --color-gold-glow: rgba(197, 168, 128, 0.25);
  
  --color-text-primary: #f4f4f5;  /* Blanco cálido */
  --color-text-secondary: #f4f4f5;  /* Blanco cálido */
  --color-text-muted: #71717a;    /* Gris oscuro para detalles menores */
  
  --color-border: rgba(197, 168, 128, 0.15); /* Bordes finos dorados */
  --color-border-glow: rgba(197, 168, 128, 0.4);
  
  /* Tipografía */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Efectos y Tiempos */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --glow-shadow: 0 0 20px rgba(197, 168, 128, 0.08);
}

/* ==========================================================================
   2. REGLAS GENERALES Y RESET
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
  background-color: var(--color-bg-deep);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

/* Compensar la cabecera fija en todos los anclajes de sección */
section[id] {
  scroll-margin-top: 90px;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

/* Scrollbar Personalizada */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Estilo de selección de texto */
::selection {
  background-color: var(--color-gold);
  color: #000000;
}

/* ==========================================================================
   3. CLASES DE UTILIDAD Y CONTENEDORES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Separador dorado premium con destello */
.gold-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 16px 0 24px 0;
}

.gold-separator .line {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.gold-separator .star {
  color: var(--color-gold);
  font-size: 14px;
  animation: pulse-star 3s infinite ease-in-out;
}

@keyframes pulse-star {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Encabezados de sección */
.section-header {
  margin-bottom: 56px;
}

.gold-subtitle {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.2;
}

.section-desc {
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 17px;
}

/* ==========================================================================
   4. BOTONES Y ACCIONES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px; /* Acabado rectangular clásico de lujo */
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  gap: 10px;
}

.btn-gold {
  background-color: var(--color-gold);
  color: #0c0c0e;
}

.btn-gold:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.2);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-border);
  color: var(--color-gold);
}

.btn-outline:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: #0c0c0e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.15);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 11px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  flex-shrink: 0;
}

/* ==========================================================================
   5. CABECERA Y NAVEGACIÓN (HEADER)
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  background-color: rgba(9, 9, 11, 0.7);
  border-bottom: 1px solid transparent;
}

/* Header con scroll (glassmorphism) */
.main-header.scrolled {
  background-color: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
  padding: 10px 24px;
}

/* Logotipo */
.header-logo {
  height: 54px;
  width: auto;
  max-width: 100%;
  display: block;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.main-header.scrolled .header-logo {
  height: 42px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-monogram {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  letter-spacing: 0;
  position: relative;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-text-primary);
}

.logo-subtitle {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--color-gold);
}

/* Enlaces de navegación desktop */
.nav-desktop ul {
  display: flex;
  gap: 32px;
}

.nav-desktop a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--color-text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--color-text-primary);
}

/* Efecto de línea inferior al hacer hover */
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

/* Botón de navegación móvil (hamburguesa) */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-primary);
  position: relative;
  transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
  content: '';
  width: 24px;
  height: 2px;
  background-color: var(--color-text-primary);
  position: absolute;
  left: 0;
  transition: var(--transition-fast);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Hamburger animada al abrir */
.mobile-nav-toggle.active .hamburger {
  background-color: transparent;
}

.mobile-nav-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-nav-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Menú móvil desplegable */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(9, 9, 11, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px;
  transition: var(--transition-smooth);
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  width: 100%;
  max-width: 280px;
}

.nav-mobile ul li {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
}

.nav-mobile ul li:first-child {
  border-top: 1px solid var(--color-border);
}

.nav-mobile a {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.nav-mobile a:hover {
  color: var(--color-gold);
}

.mobile-cta-li {
  width: 100%;
  max-width: 300px;
  margin-top: 20px;
}

/* ==========================================================================
   6. SECCIÓN HERO (PORTADA DINÁMICA)
   ========================================================================== */
.hero-section {
  position: relative;
  height: 90vh;
  min-height: 650px;
  overflow: hidden;
  padding: 0;
  display: block;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide .hero-container {
  width: 100%;
  position: relative;
  z-index: 5;
  /* Padding lateral para que las flechas del slider no tapen el contenido */
  padding-left: 100px;
  padding-right: 100px;
}

.hero-content {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-badge-text {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
  color: var(--color-text-primary);
}

.hero-subtitle {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  line-height: 1.5;
  font-weight: 300;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Slide Amenities Pills */
.hero-slide-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  justify-content: center;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.amenity-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background-color: rgba(197, 168, 128, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  font-size: 11px;
  color: var(--color-gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Navigation Arrows */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background-color: rgba(9, 9, 11, 0.4);
  color: var(--color-gold);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10;
  outline: none;
  user-select: none;
}

.hero-slider-arrow:hover {
  background-color: var(--color-gold);
  color: #0c0c0e;
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.3);
}

.hero-slider-arrow.prev {
  left: 32px;
}

.hero-slider-arrow.next {
  right: 32px;
}

/* Dots Indicators */
.hero-slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.hero-slider-dots .dot:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.hero-slider-dots .dot.active {
  background-color: var(--color-gold);
  width: 24px;
  border-radius: 4px;
}

.hero-border-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  z-index: 5;
}

/* ==========================================================================
   7. SELECTOR DE FLOTILLA (VEHICLES SELECTOR)
   ========================================================================== */
.flotilla-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--color-border);
}

.vehicle-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.vehicle-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.vehicle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: var(--transition-smooth);
  pointer-events: none;
  z-index: 5;
}

/* Tarjeta activa */
.vehicle-card.active {
  background-color: rgba(197, 168, 128, 0.03);
  box-shadow: var(--glow-shadow);
}

.vehicle-card.active::before {
  border-color: var(--color-gold);
  box-shadow: inset 0 0 10px rgba(197, 168, 128, 0.1);
}

.vehicle-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-border-glow);
  box-shadow: var(--glow-shadow);
}

.card-image-wrapper {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.card-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.vehicle-card:hover .card-bg-img {
  transform: scale(1.08);
}

.card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(18, 18, 22, 0.9));
}

.card-brand-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(0, 0, 0, 0.75);
  border: 1px solid var(--color-border);
  color: var(--color-gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}

.card-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--color-text-secondary);
}

.meta-icon {
  color: var(--color-gold);
}

.card-description {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-action-btn {
  pointer-events: none; /* Dejar que el click del card maneje todo */
}

/* ==========================================================================
   8. SECCIÓN DE SERVICIOS
   ========================================================================== */
.services-section {
  padding: 100px 0;
  background-color: rgba(18, 18, 22, 0.3);
  border-bottom: 1px solid var(--color-border);
}

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

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 40px;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  background-color: var(--color-bg-card-hover);
  box-shadow: var(--glow-shadow);
}

.service-icon-wrapper {
  width: 56px;
  height: 56px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  background-color: rgba(197, 168, 128, 0.05);
  margin-bottom: 24px;
  position: relative;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
  color: #0c0c0e;
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.3);
}

.service-icon {
  width: 24px;
  height: 24px;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 16px;
}

.service-card-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   9. VEHÍCULO DESTACADO DINÁMICO (DETAILS)
   ========================================================================== */
.details-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

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

.details-info-col {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.details-info-col.fade-out {
  opacity: 0;
  transform: translateX(-20px);
}

.vehicle-specs-pills {
  display: flex;
  gap: 12px;
  margin: 20px 0 32px 0;
  flex-wrap: wrap;
}

.spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: rgba(197, 168, 128, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  font-size: 12px;
  color: var(--color-gold);
  font-weight: 500;
}

.details-desc {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.details-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.details-highlights-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-bullet {
  color: var(--color-gold);
  font-size: 12px;
  line-height: 1.6;
}

.bullet-text {
  font-size: 14px;
  color: var(--color-text-primary);
  line-height: 1.5;
}

.details-showcase-col {
  position: relative;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.details-showcase-col.fade-out {
  opacity: 0;
  transform: scale(0.95);
}

.showcase-main-image-wrapper {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.showcase-main-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.8s ease-in-out;
}

.showcase-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(9,9,11,0.5) 0%, transparent 40%);
  pointer-events: none;
}

/* ==========================================================================
   10. DESTINOS Y EXPERIENCIAS
   ========================================================================== */
.destinations-section {
  padding: 100px 0;
  background-color: rgba(18, 18, 22, 0.15);
  border-bottom: 1px solid var(--color-border);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.destination-card {
  position: relative;
  height: 360px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition-smooth);
}

.destination-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-border-glow);
  box-shadow: var(--glow-shadow);
}

.dest-img-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.destination-card:hover .dest-img {
  transform: scale(1.08);
}

.dest-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(9, 9, 11, 0.95) 0%, rgba(9, 9, 11, 0.4) 50%, transparent 100%);
  transition: var(--transition-smooth);
}

.destination-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(9, 9, 11, 0.98) 0%, rgba(9, 9, 11, 0.2) 60%, transparent 100%);
}

.dest-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
}

.dest-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.dest-tagline {
  font-size: 13px;
  color: var(--color-text-secondary);
  letter-spacing: 0.5px;
}

.dest-tagline {
  font-size: 11px;
  color: var(--color-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ==========================================================================
   11. TRANSPORTE CORPORATIVO B2B
   ========================================================================== */
.corporate-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--color-border);
  background-color: rgba(18, 18, 22, 0.3);
}

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

.corporate-desc {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 24px 0 40px 0;
}

.corporate-perks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.perk-item {
  display: flex;
  gap: 16px;
}

.perk-icon {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.perk-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.perk-item p {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* B2B Badge Card Column */
.corporate-visual-col {
  display: flex;
  justify-content: center;
}

.corporate-badge-card {
  width: 100%;
  max-width: 380px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  box-shadow: var(--glow-shadow);
  overflow: hidden;
}

/* Luxury card patterns */
.corporate-badge-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.corporate-badge-logo {
  height: 120px;
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto 20px auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.monogram-big {
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--color-gold);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
  opacity: 0.85;
}

.corporate-badge-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.corporate-badge-card .gold-subtitle {
  font-size: 9px;
  margin-bottom: 24px;
}

.card-line {
  height: 1px;
  background-color: var(--color-border);
  margin: 24px 0;
}

.card-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

/* ==========================================================================
   12. CÓMO FUNCIONA (PROCESS)
   ========================================================================== */
.process-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--color-border);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.step-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 40px;
  border-radius: 4px;
  position: relative;
  transition: var(--transition-smooth);
}

.step-card:hover {
  border-color: var(--color-border-glow);
  box-shadow: var(--glow-shadow);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 300;
  color: rgba(197, 168, 128, 0.15);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 32px;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  margin-top: 16px;
  margin-bottom: 16px;
}

.step-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   13. GALERÍA DINÁMICA (PORTFOLIO DETALLES)
   ========================================================================== */
.gallery-section {
  padding: 100px 0;
  background-color: rgba(18, 18, 22, 0.15);
  border-bottom: 1px solid var(--color-border);
}

/* Contenedor del Slider de Galería */
.gallery-slider-container {
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.gallery-slider-wrapper {
  position: relative;
  width: 100%;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transform: scale(0.98);
  z-index: 1;
}

.gallery-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}

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

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  cursor: pointer;
  background-color: var(--color-bg-card);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: var(--glow-shadow);
}

.gallery-img-wrapper {
  position: relative;
  padding-bottom: 66.66%; /* Relación de aspecto 3:2 */
  overflow: hidden;
}

.gallery-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 9, 11, 0.85);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-hover-overlay {
  opacity: 1;
}

/* Icono de Lupa SVG premium */
.zoom-icon {
  width: 32px;
  height: 32px;
  color: var(--color-gold);
  margin-bottom: 8px;
  transform: translateY(10px);
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.gallery-item:hover .zoom-icon {
  transform: translateY(0);
}

.gallery-img-desc {
  font-size: 13px;
  color: var(--color-text-primary);
  line-height: 1.4;
  transform: translateY(15px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img-desc {
  transform: translateY(0);
}

/* Controles de navegación del slider de galería */
.gallery-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(18, 18, 22, 0.6);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.gallery-slider-arrow svg {
  width: 24px;
  height: 24px;
  display: block;
}

.gallery-slider-arrow:hover {
  background: var(--color-bg-card);
  color: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: var(--glow-shadow);
}

.gallery-slider-arrow.prev {
  left: -25px;
}

.gallery-slider-arrow.next {
  right: -25px;
}

.gallery-slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-dot:hover {
  background: var(--color-text-secondary);
}

.gallery-dot.active {
  background: var(--color-gold);
  box-shadow: 0 0 8px var(--color-gold);
  width: 24px;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .gallery-slider-arrow.prev {
    left: -10px;
  }
  .gallery-slider-arrow.next {
    right: -10px;
  }
}

@media (max-width: 767px) {
  .gallery-slider-arrow {
    display: none !important;
  }
}

/* ==========================================================================
   14. SECCIÓN FAQ (ACORDEÓN)
   ========================================================================== */
.faq-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--color-border);
}

.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--color-border-glow);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  outline: none;
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-primary);
  transition: var(--transition-fast);
}

.faq-trigger:hover .faq-question {
  color: var(--color-gold);
}

/* Flecha rotatoria */
.faq-icon-arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  transform: rotate(45deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-right: 4px;
  flex-shrink: 0;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(-135deg);
}

.faq-item.active {
  border-color: var(--color-gold);
  box-shadow: var(--glow-shadow);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: rgba(9, 9, 11, 0.2);
}

.faq-answer {
  padding: 0 32px 24px 32px;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   15. CTA FINAL Y RESERVA DIRECTA
   ========================================================================== */
.final-cta-section {
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-image: linear-gradient(to bottom, rgba(9, 9, 11, 0.9) 0%, rgba(9, 9, 11, 0.98) 100%), url('assets/suburban_bg.jpg');
  position: relative;
}

.final-cta-border-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 17px;
  color: var(--color-text-secondary);
  max-width: 580px;
  margin: 0 auto 40px auto;
  font-weight: 300;
}

.cta-phone-card {
  display: inline-block;
  background-color: rgba(18, 18, 22, 0.6);
  border: 1px solid var(--color-border);
  padding: 24px 40px;
  border-radius: 4px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 40px;
}

.phone-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
}

.phone-number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--color-gold);
  display: block;
}

.phone-number:hover {
  color: var(--color-gold-hover);
  text-shadow: 0 0 10px rgba(197, 168, 128, 0.2);
}

/* ==========================================================================
   16. PIE DE PÁGINA (FOOTER)
   ========================================================================== */
.main-footer {
  background-color: #060608;
  border-top: 1px solid var(--color-border);
  padding: 80px 0 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 90px;
  width: auto;
  max-width: 100%;
  align-self: flex-start;
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-monogram {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--color-text-secondary);
  max-width: 320px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col li {
  font-size: 14px;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.footer-col a:hover {
  color: var(--color-text-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.03);
  padding: 32px 0;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-text {
  font-size: 12px;
  color: var(--color-text-muted);
}

.tax-info {
  font-size: 12px;
  color: var(--color-gold);
  font-weight: 500;
}

/* Disclaimer de Formulario */
.form-disclaimer {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 16px;
  line-height: 1.5;
  text-align: center;
  width: 100%;
}

/* Enlaces Legales del Footer (Botones) */
.footer-legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  width: 100%;
  margin-bottom: 16px;
}

.footer-legal-links a {
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
}

.footer-legal-links a:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: rgba(197, 168, 128, 0.05);
  box-shadow: 0 0 8px rgba(197, 168, 128, 0.1);
}

/* ==========================================================================
   17. BOTÓN FLOTANTE WHATSAPP (GOLD INTEGRATION)
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background-color: #0c0c0e;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(197, 168, 128, 0.1);
  z-index: 998;
  transition: var(--transition-smooth);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  background-color: var(--color-gold);
  color: #0c0c0e;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(197, 168, 128, 0.25);
  border-color: var(--color-gold);
}

/* Scroll To Top Button */
.scroll-top {
  position: fixed;
  bottom: 104px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: rgba(18, 18, 22, 0.8);
  border: 1px solid var(--color-border);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 990;
  transition: var(--transition-smooth);
  opacity: 0;
  visibility: hidden;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--color-gold);
  color: #0c0c0e;
  border-color: var(--color-gold);
}

/* ==========================================================================
   18. INTERFAZ LIGHTBOX (MODAL PREVIEW)
   ========================================================================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 9, 11, 0.98);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: rgba(18, 18, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 2100;
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
  display: block;
}

.lightbox-close:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: rgba(197, 168, 128, 0.1);
  box-shadow: var(--glow-shadow);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(18, 18, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
  user-select: none;
  z-index: 2100;
}

.lightbox-prev svg,
.lightbox-next svg {
  width: 28px;
  height: 28px;
  display: block;
}

.lightbox-prev { left: 32px; }
.lightbox-next { right: 32px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: rgba(197, 168, 128, 0.1);
  box-shadow: var(--glow-shadow);
}

.lightbox-content {
  max-width: 80%;
  max-height: 75%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 2px;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 16px;
  font-size: 15px;
  color: var(--color-text-secondary);
  font-family: var(--font-serif);
  letter-spacing: 1px;
}

/* ==========================================================================
   18.b FORMULARIO DE CONTACTO PREMIUM (CONTACT FORM)
   ========================================================================== */
.contact-form-container {
  max-width: 800px;
  margin: 48px auto 0 auto;
  text-align: left;
}

.form-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 48px;
  position: relative;
  box-shadow: var(--glow-shadow);
  transition: var(--transition-smooth);
}

.form-step {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-step.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.form-selector-title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 1px;
}

.selector-options {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.selector-btn {
  flex: 1;
  background-color: rgba(9, 9, 11, 0.4);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 32px 24px;
  color: var(--color-text-primary);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: var(--transition-smooth);
}

.selector-btn:hover {
  border-color: var(--color-gold);
  background-color: rgba(197, 168, 128, 0.03);
  transform: translateY(-4px);
  box-shadow: var(--glow-shadow);
}

.selector-icon {
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.selector-btn:hover .selector-icon {
  transform: scale(1.1);
  color: var(--color-gold-hover);
}

.selector-label {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Estilos de Formulario */
.form-back-btn {
  background: rgba(197, 168, 128, 0.03);
  border: 1px solid rgba(197, 168, 128, 0.2);
  color: var(--color-gold);
  font-size: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 32px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  outline: none;
  gap: 8px;
}

.form-back-btn:hover {
  background: rgba(197, 168, 128, 0.1);
  border-color: var(--color-gold);
  color: var(--color-text-primary);
  transform: translateX(-4px);
  box-shadow: 0 4px 12px rgba(197, 168, 128, 0.08);
}

.form-fields-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.form-field input,
.form-field select,
.form-field textarea {
  background-color: var(--color-bg-deep);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  padding: 14px 16px;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: var(--transition-smooth);
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 10px rgba(197, 168, 128, 0.15);
  background-color: rgba(197, 168, 128, 0.02);
}

.form-field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23c5a880'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 44px;
}

/* Estilo del dropdown de opciones del select */
.form-field select option {
  background-color: #1a1a20;
  color: var(--color-text-primary);
  padding: 10px 14px;
}

.form-field input[type="date"],
.form-field input[type="time"] {
  color-scheme: dark;
}

/* Errores de Validación */
.field-error {
  font-size: 11px;
  color: #ef4444;
  margin-top: 4px;
  display: none;
}

.form-field.invalid input,
.form-field.invalid select,
.form-field.invalid textarea {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.03);
}

.form-field.invalid .field-error {
  display: block;
}

/* Bloque de Seguridad */
.form-security-box {
  background-color: rgba(9, 9, 11, 0.5);
  border: 1px solid var(--color-border);
  padding: 24px;
  border-radius: 4px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.form-security-box .gold-subtitle {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--color-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.form-security-box label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-text-primary);
  text-transform: uppercase;
}

.form-security-box input {
  background-color: var(--color-bg-deep);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  padding: 12px 16px;
  border-radius: 3px;
  font-size: 14px;
  outline: none;
  width: 100%;
  transition: var(--transition-fast);
}

.form-security-box input:focus {
  border-color: var(--color-gold);
}

.form-security-box.invalid input {
  border-color: #ef4444;
}

.form-security-box.invalid #spamError {
  display: block;
}

/* Spinner de formulario */
.form-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(12, 12, 14, 0.2);
  border-top-color: #0c0c0e;
  border-radius: 50%;
  animation: form-spin 0.8s linear infinite;
  margin-left: 10px;
  vertical-align: middle;
}

@keyframes form-spin {
  to { transform: rotate(360deg); }
}

/* Pantalla de Éxito */
.success-icon-wrapper {
  width: 72px;
  height: 72px;
  background-color: rgba(197, 168, 128, 0.05);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin: 0 auto 24px auto;
  box-shadow: var(--glow-shadow);
}

.success-icon {
  width: 38px;
  height: 38px;
}

.success-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--color-text-primary);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.success-message {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 32px auto;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  margin: 0 auto;
}

/* ==========================================================================
   19. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* TABLETS Y DESKTOPS MEDIANOS (< 1024px) */
@media (max-width: 1023px) {
  .section-title { font-size: 30px; }
  .hero-title { font-size: 42px; }
  
  .vehicle-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  /* suburban/range/escalade grid on tablet */
  .vehicle-cards-grid > :nth-child(3) {
    grid-column: span 2;
    max-width: calc(50% - 12px);
    margin: 0 auto;
    width: 100%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .details-showcase-col {
    order: -1; /* Poner la foto arriba del texto */
  }

  .showcase-main-img {
    height: 300px;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .corporate-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .corporate-visual-col {
    width: 100%;
  }
  
  .corporate-badge-card {
    max-width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MÓVILES Y VERTICAL TABLET (< 768px) */
@media (max-width: 767px) {
  /* Navigation mobile layout */
  .mobile-nav-toggle { display: block; }
  .nav-desktop, .header-cta { display: none; }

  /* Centrado de sección DETALLES DEL VEHÍCULO en móvil */
  .details-info-col {
    text-align: center;
  }
  .details-info-col .text-left {
    text-align: center;
  }
  .vehicle-specs-pills {
    justify-content: center;
  }
  .details-highlights-list {
    text-align: left;
    margin: 0 auto;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 40px;   /* separación extra antes del botón */
  }

  .details-actions {
    margin-top: 16px;
  }

  /* Centrado de sección SOLUCIONES B2B en móvil */
  .corporate-text-col {
    text-align: center;
  }
  .corporate-text-col .text-left {
    text-align: center;
  }
  .corporate-perks {
    align-items: center;
  }
  .perk-item {
    text-align: left;           /* íconos + texto se leen mejor a la izquierda */
  }

  
  .section-header { margin-bottom: 40px; }
  
  /* ---- Hero móvil ---- */
  .hero-section {
    /* Header fijo (~80px) + Hero = 100% de la pantalla */
    height: 100vh;
    min-height: 100svh;
    padding: 0;
  }

  /* Centrado vertical y horizontal en móvil */
  .hero-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 60px;    /* espacio para los dots en la parte baja */
    padding-top: 80px;       /* clearance del header fijo */
  }

  /* Reducir padding lateral en móvil (las flechas son más pequeñas) */
  .hero-slide .hero-container {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 0;
  }

  .hero-title { font-size: 36px; line-height: 1.15; }
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 48px;     /* Espacio amplio antes de los botones */
  }

  /* Ocultar amenidades en móvil */
  .hero-slide-amenities {
    display: none;
  }

  /* Botones en columna, ancho completo */
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  /* Ocultar flechas del slider en móvil — los dots son suficientes para navegar */
  .hero-slider-arrow { display: none; }

  /* Grid layouts collapse to single column */
  .vehicle-cards-grid {
    grid-template-columns: 1fr;
  }
  .vehicle-cards-grid > :nth-child(3) {
    grid-column: span 1;
    max-width: 100%;
  }

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

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

  .process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  /* FAQ panel padding adjustments */
  .faq-trigger {
    padding: 20px;
  }
  .faq-question {
    font-size: 15px;
  }
  .faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 13px;
  }

  /* CTA title adjustment */
  .cta-title { font-size: 32px; }
  .phone-number { font-size: 24px; }
  .cta-phone-card { padding: 16px 24px; width: 100%; }

  /* Footer adjustments */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* WhatsApp button responsive scale */
  .whatsapp-float {
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-icon {
    width: 26px;
    height: 26px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 48px;
    height: 48px;
    left: 16px;
    right: auto;
  }
  .lightbox-next {
    right: 16px;
    left: auto;
  }
  .lightbox-prev svg,
  .lightbox-next svg {
    width: 20px;
    height: 20px;
  }
  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
  .lightbox-close svg {
    width: 20px;
    height: 20px;
  }
  .lightbox-content {
    max-width: 90%;
  }

  /* Adaptación de formulario de contacto en móviles */
  .form-card {
    padding: 24px;
  }
  .selector-options {
    flex-direction: column;
    gap: 16px;
  }
  .selector-btn {
    padding: 24px 16px;
  }
  .form-grid-2,
  .form-grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .form-selector-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .success-title {
    font-size: 22px;
  }
}

/* ==========================================================================
   20. HERO SLIDE — IDENTIDAD DE MARCA (LOGO SLIDE)
   ========================================================================== */

/* El slide de marca no lleva background-image de foto; tiene su propio fondo */
.hero-slide--brand {
  background-image: none !important;
  background-color: var(--color-bg-deep);
}

/* Destello radial dorado centrado como fondo atmosférico */
.hero-brand-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 50%,
      rgba(197, 168, 128, 0.10) 0%,
      rgba(197, 168, 128, 0.03) 50%,
      transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Contenido del slide de marca: flex columna centrado */
.hero-brand-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.hero-slide--brand.active .hero-brand-content {
  opacity: 1;
  transform: translateY(0);
}

/* Logo vertical grande */
.hero-brand-logo {
  width: auto;
  height: 300px;
  max-height: 42vh;
  max-width: 85%;
  object-fit: contain;
  margin-bottom: 36px;
  filter: drop-shadow(0 8px 32px rgba(197, 168, 128, 0.20));
  animation: logo-glow 4s ease-in-out infinite;
}

@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 8px 32px rgba(197, 168, 128, 0.20)); }
  50%       { filter: drop-shadow(0 8px 48px rgba(197, 168, 128, 0.40)); }
}

/* Tagline bajo el logo */
.hero-brand-tagline {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

/* Ajuste móvil */
@media (max-width: 767px) {
  .hero-brand-logo {
    height: 220px;
    max-height: 38vmin;
    margin-bottom: 28px;
  }
  .hero-brand-tagline {
    font-size: 11px;
    letter-spacing: 3px;
  }
  .hero-slide--brand .hero-container {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 0;
  }
}
