/* ==========================================================================
   FOREVER RING - ESTILOS PRINCIPALES Y SISTEMA DE DISEÑO
   Landing Page de Alta Gama Automotriz y Viajes de Lujo
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES Y VARIABLES DEL SISTEMA (DESIGN TOKENS)
   -------------------------------------------------------------------------- */
:root {
  /* Paleta de Colores Principales */
  --bg-dark: #070707;
  --bg-card: #0c0c0e;
  --bg-card-hover: #141418;
  --bg-glass: rgba(12, 12, 14, 0.85);
  --bg-header: rgba(7, 7, 7, 0.92);
  
  /* Colores de Acento */
  --primary-red: #e50914;
  --primary-red-hover: #ff1e27;
  --primary-red-glow: rgba(229, 9, 20, 0.4);
  
  /* Tipografía y Colores de Texto */
  --text-main: #ffffff;
  --text-muted: #a5a5b0;
  --text-dim: #6e6e78;
  
  /* Fuentes de Titulares: Rajdhani/Oswald con peso delgado/medio (NO BOLD) */
  --font-heading: 'Rajdhani', 'Oswald', 'Titillium Web', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Bordes y Sombras */
  --border-light: rgba(255, 255, 255, 0.12);
  --border-red: rgba(229, 9, 20, 0.4);
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.7);
  --shadow-red: 0 0 20px rgba(229, 9, 20, 0.3);

  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET Y CONFIGURACIÓN BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.5;
  background-color: var(--bg-dark);
}

/* Selección de Texto */
::selection {
  background-color: var(--primary-red);
  color: #ffffff;
}

/* Barra de Scroll Personalizada */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: #2a2a30;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-red);
}

/* Img & SVG */
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Enlaces y Botones */
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.text-red {
  color: var(--primary-red) !important;
}

/* Botón Rojo Primario */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary-red);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-red);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(229, 9, 20, 0.5);
}

/* Botón Fantasma (Borde Fino Delgado) */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Encabezados de Sección (PESO NO BOLD / REGULAR A MEDIANO IGUAL A PLANTILLA) */
.section-title-wrapper {
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 500; /* NO BOLD NI NEGRITA */
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.15;
}

.section-subtitle {
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* --------------------------------------------------------------------------
   4. HEADER Y NAVEGACIÓN
   -------------------------------------------------------------------------- */
.header-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-header);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-normal);
  padding: 14px 0;
}

.header-navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(5, 5, 5, 0.95);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  width: 274px;
  height: 98px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500; /* NO BOLD */
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #cccccc;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-red);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-reserve-btn {
  padding: 8px 14px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.lang-selector {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border-light);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  outline: none;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
}

/* --------------------------------------------------------------------------
   5. SECCIÓN HERO
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 50px;
  background-image: linear-gradient(180deg, rgba(7,7,7,0.3) 0%, rgba(7,7,7,0.7) 70%, rgba(7,7,7,1) 100%), url('imagenes/rimagen1_principal.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 820px;
}

.hero-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: #cccccc;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
  border-left: 2px solid var(--primary-red);
  padding-left: 10px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 500; /* NO BOLD / NEGRITA */
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero-headline .line-white {
  display: block;
  color: #ffffff;
}

.hero-headline .line-red {
  display: block;
  color: var(--primary-red);
  font-weight: 600;
}

.hero-description {
  font-size: 1.05rem;
  color: #cccccc;
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
}

.hero-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sound-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.sound-toggle-btn:hover {
  color: #ffffff;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   6. SECCIÓN BRANDING Y ESTADÍSTICAS (SECCIÓN REFORMADA CON IMAGEN2.PNG Y CIRCUITO.PNG)
   -------------------------------------------------------------------------- */
.branding-stats-section {
  position: relative;
  padding: 80px 0;
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.branding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Bloque Izquierdo: SOMOS FOREVER RING con imagen2.png perfectamente integrada */
.branding-card-left {
  position: relative;
  background-color: #0b0b0d;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Imagen limpia imagen2.png visible en el lado izquierdo del bloque */
.branding-bg-imagen2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  z-index: 1;
}

/* Overlay degradado suave para mantener nítido a Santiago a la izquierda y legible el texto a la derecha */
.branding-left-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(5,5,5,0.05) 0%, rgba(5,5,5,0.7) 42%, rgba(5,5,5,0.95) 68%, rgba(5,5,5,0.98) 100%);
  z-index: 2;
}

.branding-left-content {
  position: relative;
  z-index: 3;
  width: 58%;
  margin-left: auto;
  padding: 36px 36px 36px 12px;
}

.branding-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500; /* NO BOLD */
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: #ffffff;
}

.branding-text {
  color: #c5c5d0;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.founder-signature-box {
  margin-bottom: 24px;
}

.founder-name {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  color: #ffffff;
  line-height: 1;
}

.founder-role {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Bloque Derecho: NÜRBURGRING NORDSCHLEIFE con circuito.png perfectamente integrada */
.branding-card-right {
  position: relative;
  background-color: #0b0b0d;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  min-height: 480px;
  overflow: hidden;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Imagen limpia circuito.png visible en el fondo */
.branding-bg-circuito {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.branding-right-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7,7,9,0.7) 0%, rgba(7,7,9,0.85) 100%);
  z-index: 2;
}

.branding-right-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stats-header-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500; /* NO BOLD */
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
}

.stats-header-subtitle {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  max-width: 280px;
}

.stat-item-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-row-icon {
  width: 32px;
  height: 32px;
  color: #ffffff;
  flex-shrink: 0;
}

.stat-row-val {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.1;
}

.stat-row-lbl {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   7. SECCIÓN PRÓXIMAS SALIDAS & WALL OF DREAMS
   -------------------------------------------------------------------------- */
.salidas-wall-section {
  padding: 80px 0;
  background-color: #08080a;
}

.dual-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.salidas-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.salida-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition-fast);
}

.salida-card:hover {
  border-color: var(--border-red);
  background: var(--bg-card-hover);
}

.salida-info-date {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500; /* NO BOLD */
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1.5px;
}

.salida-subdate {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.salida-badges {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #cccccc;
}

.badge-info-item svg {
  color: var(--primary-red);
}

/* Wall of Dreams Testimonials Carousel */
.wall-carousel-container {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
}

.wall-slide-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  box-sizing: border-box;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.avatar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
}

.user-meta-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 1px;
}

.user-meta-car {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: #dddddd;
  line-height: 1.5;
  margin-bottom: 20px;
}

.testimonial-date {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}

.carousel-arrows {
  display: flex;
  gap: 8px;
}

.arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition-fast);
}

.arrow-btn:hover {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
}

.carousel-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background: var(--primary-red);
  width: 20px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   8. STRIP DE EXPERIENCIA (6 COLUMNAS)
   -------------------------------------------------------------------------- */
.experience-strip-section {
  background: #050507;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 36px 0;
}

.experience-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.strip-item:last-child {
  border-right: none;
}

.strip-icon {
  width: 44px;
  height: 44px;
  color: var(--primary-red);
  margin-bottom: 12px;
  transition: var(--transition-fast);
}

.strip-text {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #cccccc;
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   9. SECCIÓN ELEGÍ TU EXPERIENCIA (PAQUETES)
   -------------------------------------------------------------------------- */
.packages-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 36px;
}

.package-card {
  position: relative;
  background: linear-gradient(180deg, rgba(18, 18, 22, 0.95) 0%, rgba(10, 10, 12, 0.98) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.package-card.vip {
  border-color: var(--border-red);
}

.vip-badge-ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-red);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.package-card-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500; /* NO BOLD */
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 1.5px;
}

.package-checklist {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #cccccc;
}

.check-icon {
  width: 18px;
  height: 18px;
  color: var(--primary-red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   10. SECCIÓN ITINERARIO (7 DÍAS)
   -------------------------------------------------------------------------- */
.itinerary-section {
  padding: 80px 0;
  background: #08080b;
  border-top: 1px solid var(--border-light);
}

.itinerary-track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  margin-top: 36px;
  margin-bottom: 36px;
}

.itinerary-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition-normal);
}

.itinerary-card:hover {
  border-color: var(--border-red);
  background: var(--bg-card-hover);
}

.day-badge {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--primary-red);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.day-icon {
  width: 28px;
  height: 28px;
  color: #ffffff;
  margin-bottom: 14px;
}

.day-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500; /* NO BOLD */
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.day-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   11. SECCIÓN THE GREEN HELL JOURNAL
   -------------------------------------------------------------------------- */
.journal-section {
  padding: 80px 0;
  position: relative;
  background-image: linear-gradient(180deg, rgba(7,7,7,0.9) 0%, rgba(7,7,7,0.95) 100%), url('imagenes/rimagen1_principal.png');
  background-size: cover;
  background-position: center;
}

.journal-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

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

.journal-card {
  position: relative;
  height: 340px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: var(--transition-normal);
  cursor: pointer;
}

.journal-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease;
}

.journal-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 80%);
  z-index: 2;
}

.journal-card-content {
  position: relative;
  z-index: 3;
}

.journal-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500; /* NO BOLD */
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.journal-card-snippet {
  font-size: 0.8rem;
  color: #cccccc;
  line-height: 1.35;
}

.journal-card:hover {
  border-color: var(--border-red);
}

.journal-card:hover .journal-card-bg {
  transform: scale(1.06);
}

/* --------------------------------------------------------------------------
   12. SECCIÓN CALL TO ACTION FINAL
   -------------------------------------------------------------------------- */
.cta-final-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background-image: linear-gradient(180deg, rgba(7,7,7,0.85) 0%, rgba(7,7,7,0.95) 100%), url('imagenes/circuito.png');
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--border-light);
}

.cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 500; /* NO BOLD */
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 2px;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   13. FOOTER Y FOOTER STRIP
   -------------------------------------------------------------------------- */
.footer-main {
  background-color: #040405;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 50px;
  padding-bottom: 24px;
}

.footer-social-strip {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand-logo {
  height: 48px;
  width: auto;
  margin-bottom: 14px;
}

.footer-slogan {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer-newsletter-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #cccccc;
  margin-bottom: 10px;
}

.footer-contact-item svg {
  color: var(--primary-red);
}

.footer-legal-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.legal-links {
  display: flex;
  gap: 18px;
}

/* --------------------------------------------------------------------------
   14. MODALES INTERACTIVOS
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 500px;
  padding: 36px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--text-muted);
  font-size: 1.4rem;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #ffffff;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.form-input, .form-select, .form-textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

/* --------------------------------------------------------------------------
   15. RESPONSIVE BREAKPOINTS (MEDIA QUERIES)
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .itinerary-track {
    grid-template-columns: repeat(4, 1fr);
  }
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .experience-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
  }
}

@media (max-width: 992px) {
  .header-navbar {
    padding: 8px 0;
  }

  .nav-container {
    padding: 0 12px;
  }

  .nav-logo-img {
    width: auto;
    max-width: 110px;
    height: 32px;
    object-fit: contain;
  }

  .nav-actions {
    gap: 6px;
    display: flex;
    align-items: center;
  }

  .nav-reserve-btn {
    padding: 6px 9px;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .lang-selector {
    padding: 3px 5px;
    font-size: 0.72rem;
  }

  .mobile-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 2px;
  }

  .mobile-toggle span {
    width: 16px;
    height: 2px;
    background-color: #ffffff;
    margin: 2px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0c0c0e;
    border-bottom: 2px solid var(--primary-red);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.9);
    flex-direction: column;
    padding: 20px 24px;
    gap: 12px;
    z-index: 1001;
  }
  
  .nav-menu.mobile-active {
    display: flex !important;
  }

  .nav-menu .nav-link {
    font-size: 0.95rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    display: block;
  }

  .branding-grid,
  .dual-layout-grid,
  .packages-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .branding-card-left {
    min-height: 420px;
  }

  .branding-left-content {
    width: 100%;
    padding: 30px;
  }

  .branding-left-overlay {
    background: linear-gradient(180deg, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.85) 60%, rgba(5,5,5,0.95) 100%);
  }
}

@media (max-width: 768px) {
  .itinerary-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .journal-grid {
    grid-template-columns: 1fr;
  }
  .experience-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn-primary, .btn-ghost {
    width: 100%;
  }
  .footer-legal-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 8px;
  }

  .nav-logo-img {
    max-width: 90px;
    height: 26px;
  }

  .nav-actions {
    gap: 4px;
  }

  .nav-reserve-btn {
    padding: 5px 7px;
    font-size: 0.65rem;
    letter-spacing: 0px;
  }

  .lang-selector {
    padding: 2px 3px;
    font-size: 0.65rem;
  }

  .mobile-toggle {
    width: 32px;
    height: 32px;
  }

  .itinerary-track {
    grid-template-columns: 1fr;
  }
  .experience-strip-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* --------------------------------------------------------------------------
   14. BOTÓN FLOTANTE DE WHATSAPP Y ENLACE DE TELÉFONO
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4), 0 6px 20px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6), 0 8px 25px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.footer-phone-link {
  color: inherit;
  transition: var(--transition-fast);
}

.footer-phone-link:hover {
  color: var(--primary-red);
}

