@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;600;700&family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&display=swap');

/* ========== ANIMACIONES EN SCROLL (sistema propio, sin AOS externo) ========== */

/* Estado inicial: oculto antes de animar */
[data-aos] {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

/* fade-up */
[data-aos="fade-up"] {
  transform: translateY(32px);
}

/* fade-down */
[data-aos="fade-down"] {
  transform: translateY(-32px);
}

/* fade-right */
[data-aos="fade-right"] {
  transform: translateX(-32px);
}

/* fade-left */
[data-aos="fade-left"] {
  transform: translateX(32px);
}

/* zoom-in */
[data-aos="zoom-in"] {
  transform: scale(0.92);
}

/* Estado final: visible y en posición */
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* Reduce motion: mostrar todo de una sin animación */
@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ========== RESET Y VARIABLES ========== */

/* Tipografía de títulos:
   --font-display: Bebas Neue  → hero, títulos de sección principales, mega-texto
   --font-heading: Oswald       → subtítulos, tarjetas, admin, elementos secundarios
   --font-body: Barlow          → cuerpo de texto, párrafos
*/

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Barlow', sans-serif;
  color: #e0e0e0;
  line-height: 1.7;
  background-color: var(--negro);
  min-height: 100vh;
  overflow-x: hidden;
}

:root {
  --negro: #0a0a0a;
  --negro-claro: #141414;
  --gris-oscuro: #1e1e1e;
  --gris-medio: #3a3a3a;
  --gris-claro: #888888;
  --gris-fondo: #111111;
  --amarillo: #f5a623;
  --amarillo-claro: #ffc107;
  --amarillo-oscuro: #d4881e;
  --rojo: #c0392b;
  --rojo-oscuro: #962d22;
  --shadow: 0 10px 40px rgba(0,0,0,0.5);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.6);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 70px;
  --font-display: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  --font-heading: 'Oswald', 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

/* ========== SECCIONES ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  width: 100%;
}

section[id] {
  scroll-margin-top: 80px;
}

/* ========== PRELOADER ========== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--negro);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-rueda {
  width: 110px;
  height: 110px;
  animation: girarRueda 1.1s linear infinite;
  transform-origin: center center;
  /* La imagen de la rueda es gris oscuro — aclaramos con filtro para que destaque en fondo negro */
  filter: brightness(1.6) drop-shadow(0 0 18px rgba(245,166,35,0.35));
}

@keyframes girarRueda {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

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

.preloader p {
  margin-top: 18px;
  color: var(--amarillo);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* Textura carbono/malla que imita el fondo del logo Brevi */
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.013) 2px,
      rgba(255,255,255,0.013) 4px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.013) 2px,
      rgba(255,255,255,0.013) 4px
    ),
    linear-gradient(180deg, #1a1a18 0%, #0d0d0c 100%);
  border-bottom: 2px solid rgba(255,193,7,0.45);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.013) 2px,
      rgba(255,255,255,0.013) 4px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.013) 2px,
      rgba(255,255,255,0.013) 4px
    ),
    linear-gradient(180deg, #111110 0%, #080807 100%);
  border-bottom-color: var(--amarillo);
  box-shadow: 0 4px 24px rgba(0,0,0,0.7), 0 1px 0 rgba(255,193,7,0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  transition: var(--transition);
  /* La imagen tiene fondo oscuro integrado — la mostramos con bordes redondeados
     y una leve sombra para que asiente bien en el navbar */
  border-radius: 6px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}

.logo-img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 2px 12px rgba(255,193,7,0.25));
}

/* Navegación desktop */
.nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: #e0e0e0;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amarillo);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--amarillo);
}

.btn-whatsapp-header {
  background: #25D366;
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-whatsapp-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-whatsapp-header:hover::before {
  width: 300px;
  height: 300px;
}

.btn-whatsapp-header:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-menu-icon {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: var(--transition);
  padding: 4px;
}

.mobile-menu-icon:hover {
  background: rgba(255,193,7,0.08);
}

/* Rueda usada como ícono de menú */
.mobile-menu-icon .rueda-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(1.5) drop-shadow(0 0 4px rgba(245,166,35,0.3));
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s ease;
  transform-origin: center center;
}

/* Al abrir el menú, la rueda gira 180° */
.mobile-menu-icon.menu-open .rueda-icon {
  transform: rotate(180deg);
  filter: brightness(1.8) drop-shadow(0 0 8px rgba(245,166,35,0.55));
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  height: 100vh;
  min-height: 500px;
  width: 100%;
}

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

.swiper-slide {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.8s ease;
  will-change: transform;
}

.swiper-slide-active .hero-bg {
  transform: scale(1.0);
}

/* Fade suave al entrar cada slide */
.swiper-slide {
  opacity: 0;
  transition: opacity 0.6s ease !important;
}
.swiper-slide-active {
  opacity: 1;
}

.hero-bg-1,
.hero-bg-2 {
  background-image: url('../assets/img/local-fuera2\ .jpeg');
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.60) 50%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 1;
}

/* Borde inferior degradado para transición suave hacia la siguiente sección */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--negro));
  z-index: 3;
  pointer-events: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

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

/* Animación de entrada del contenido en cada slide activo */
.swiper-slide-active .hero-content {
  animation: heroContentIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animación escalonada de los hijos */
.swiper-slide-active .hero-badge {
  animation: heroItemIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.swiper-slide-active .hero-content h1,
.swiper-slide-active .hero-content h2 {
  animation: heroItemIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.swiper-slide-active .hero-content > p {
  animation: heroItemIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}
.swiper-slide-active .hero-buttons {
  animation: heroItemIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

@keyframes heroItemIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  background: var(--amarillo);
  color: var(--negro);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 18px;
  animation: pulse 2s infinite;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,193,7,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(255,193,7,0); }
}

.hero-content h1,
.hero-content h2 {
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 400;
  margin-bottom: 22px;
  color: #ffffff;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-content .highlight {
  color: var(--amarillo);
  position: relative;
  display: inline-block;
}

.hero-content p {
  font-size: 17px;
  margin-bottom: 30px;
  color: rgba(220, 220, 220, 0.9);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-primary {
  background: var(--amarillo);
  color: var(--negro);
}

.btn-primary:hover {
  background: var(--amarillo-oscuro);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid var(--amarillo);
}

.btn-secondary:hover {
  background: var(--amarillo);
  color: var(--negro);
  transform: translateY(-2px);
}

/* Flechas del hero: ocultas — la navegación es por los puntos de paginación */
.hero .swiper-button-next,
.hero .swiper-button-prev {
  display: none !important;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--amarillo) !important;
  transition: var(--transition);
}

/* Paginación del hero — puntos más visibles y con label implícito */
.hero .swiper-pagination {
  bottom: 28px !important;
}

.hero .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: rgba(255,255,255,0.4) !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
}

.hero .swiper-pagination-bullet-active {
  width: 28px !important;
  height: 10px !important;
  border-radius: 5px !important;
  background: var(--amarillo) !important;
}

.swiper-pagination-bullet {
  background: var(--gris-claro) !important;
}

.swiper-pagination-bullet-active {
  background: var(--amarillo) !important;
  transform: scale(1.2);
}

/* ========== SECTION GLOBAL HELPERS ========== */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-block;
  background: transparent;
  color: var(--amarillo);
  padding: 4px 0;
  border-radius: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 12px;
  border-left: 3px solid var(--amarillo);
  padding-left: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-title .highlight {
  color: var(--amarillo);
}

.section-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--amarillo), transparent);
  margin: 0 auto;
}

/* ========== SECCIÓN PROMOCIONES — PREMIUM ========== */
.promos-section-full {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0 clamp(50px, 6vw, 80px);
  background: var(--negro-claro);
  overflow: hidden;
}

.promos-bg-layer {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.06;
  z-index: 0;
}

.promos-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.97) 0%, rgba(14,14,14,0.92) 50%, rgba(10,10,10,0.97) 100%);
  z-index: 1;
}

.promos-section-full .container {
  position: relative;
  z-index: 2;
}

/* Encabezado de promociones */
.promos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(32px, 4vw, 48px);
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.promos-header-left .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-align: left;
}

.promos-header-left .section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--amarillo);
  box-shadow: 0 0 0 4px rgba(245,166,35,0.16);
}

.promos-header-left .section-title {
  margin-top: 10px;
  margin-bottom: 0;
}

.promos-subtitle {
  color: var(--gris-claro);
  font-size: 15px;
  margin-top: 10px;
  max-width: 480px;
  line-height: 1.6;
}

.btn-promos-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2be07a, #1fa855);
  color: #fff;
  padding: 14px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(37,211,102,0.25);
}

.btn-promos-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(37,211,102,0.35);
}

.btn-promos-wa i {
  font-size: 18px;
}

/* ---- BANNER CAROUSEL ---- */
.banner-carousel-wrap {
  position: relative;
  margin-bottom: clamp(40px, 6vw, 64px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.06) inset;
}

.banner-carousel {
  width: 100%;
}

/* La proporción del slide es fluida: se adapta a cualquier ancho de pantalla
   sin necesidad de alturas fijas en píxeles (esto es lo que rompía el mobile) */
.banner-carousel .swiper-slide {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  min-height: 240px;
}

/* Los banners de solo-imagen adaptan su aspect-ratio dinámicamente via JS */
.banner-carousel .swiper-slide.banner-solo-imagen {
  aspect-ratio: unset;
  min-height: 180px;
}

/* Requerido por el efecto "fade" del slider */
.banner-carousel .swiper-slide:not(.swiper-slide-active) {
  opacity: 0;
  pointer-events: none;
}
.banner-carousel .swiper-slide-active {
  opacity: 1;
  pointer-events: auto;
}

/* Banner de imagen */
.banner-img-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease-out;
}

.banner-carousel .swiper-slide-active .banner-img-slide {
  transform: scale(1.05);
}

/* Banner de solo imagen (sin texto): sin zoom para no recortar */
.banner-solo-imagen .banner-img-slide,
.banner-carousel .swiper-slide-active .banner-solo-imagen .banner-img-slide {
  transform: none !important;
}

/* Imagen que debe verse completa (portrait/cuadrada) */
.banner-img-fit {
  object-fit: contain !important;
  background: #0a0a0a;
}

/* Los slides de solo-imagen se adaptan a la proporción real de la imagen */
.banner-solo-imagen {
  min-height: 180px;
}

/* Banner generado (sin imagen) */
.banner-generated {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background: var(--negro-claro);
}

/* Gradiente para banners con imagen de fondo */
.banner-overlay-gradient-img {
  background: linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.1) 100%),
              linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 45%);
}

.banner-overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
  padding: clamp(26px, 5vw, 60px) clamp(26px, 6vw, 64px);
}

.banner-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.banner-text-block {
  max-width: 600px;
  width: 100%;
  position: relative;
  z-index: 3;
}

.banner-tag {
  display: inline-block;
  background: var(--amarillo);
  color: var(--negro);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: clamp(10px, 2vw, 16px);
}

.banner-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.8vw, 60px);
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.banner-title .banner-highlight {
  color: var(--amarillo);
}

.banner-desc {
  color: rgba(255,255,255,0.82);
  font-size: clamp(13px, 1.4vw, 16px);
  margin-bottom: clamp(14px, 2.4vw, 24px);
  line-height: 1.55;
  max-width: 95%;
}

.banner-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: clamp(14px, 2.4vw, 24px);
  flex-wrap: wrap;
}

.banner-price-new {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.4vw, 44px);
  font-weight: 700;
  color: var(--amarillo);
  line-height: 1;
}

.banner-price-old {
  font-size: clamp(13px, 1.6vw, 22px);
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}

.banner-discount-badge {
  background: var(--rojo);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: 800;
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2be07a, #1fa855);
  color: #fff;
  padding: clamp(11px, 1.4vw, 13px) clamp(20px, 2.6vw, 28px);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(13px, 1.4vw, 15px);
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(37,211,102,0.32);
}

.banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.4);
}

/* Banner skeleton — mantiene proporción 16:7 mientras carga */
.banner-skeleton-slide {
  aspect-ratio: 16 / 7 !important;
  min-height: 240px;
}

.banner-skeleton {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gris-oscuro) 25%, var(--gris-medio) 50%, var(--gris-oscuro) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 20px;
}

/* Navegación del banner */
.banner-prev,
.banner-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(38px, 4vw, 48px);
  height: clamp(38px, 4vw, 48px);
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: clamp(13px, 1.4vw, 16px);
}

.banner-prev:hover,
.banner-next:hover {
  background: var(--amarillo);
  color: var(--negro);
  border-color: var(--amarillo);
}

.banner-prev { left: clamp(10px, 2vw, 20px); }
.banner-next { right: clamp(10px, 2vw, 20px); }

/* Swiper override para banner */
.banner-carousel .swiper-button-next,
.banner-carousel .swiper-button-prev {
  display: none;
}

/* Paginación del banner */
.banner-pagination {
  position: absolute;
  bottom: 16px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 10;
}

.banner-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4) !important;
  transition: all 0.3s ease;
  margin: 0 4px !important;
}

.banner-pagination .swiper-pagination-bullet-active {
  background: var(--amarillo) !important;
  width: 24px;
  border-radius: 5px;
}

/* Barra de progreso */
.banner-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 10;
}

.banner-progress-bar {
  height: 100%;
  background: var(--amarillo);
  width: 0%;
  transition: width 0.1s linear;
}

/* ---- PROMO CARDS SECTION ---- */
.promo-cards-section {
  margin-bottom: clamp(36px, 5vw, 50px);
}

.promo-cards-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 16px;
}

.promo-cards-title {
  font-family: var(--font-heading);
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
}

.promo-cards-title i {
  color: var(--amarillo);
  margin-right: 8px;
}

.promo-cards-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.pc-btn-prev,
.pc-btn-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gris-medio);
  background: var(--gris-oscuro);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 13px;
}

.pc-btn-prev:hover,
.pc-btn-next:hover {
  background: var(--amarillo);
  color: var(--negro);
  border-color: var(--amarillo);
}

.pc-btn-prev.swiper-button-disabled,
.pc-btn-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.promo-cards-carousel {
  padding-bottom: 44px !important;
}

/* ---- PROMO CARD ---- */
.promo-card {
  background: linear-gradient(165deg, var(--gris-oscuro), #181818);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.promo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,166,35,0.45);
  box-shadow: 0 24px 55px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,166,35,0.22);
}

.promo-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.promo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.promo-card:hover .promo-image {
  transform: scale(1.06);
}

.promo-image-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
  pointer-events: none;
}

.promo-image-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gris-oscuro), var(--negro-claro));
}

.promo-image-fallback i {
  font-size: 48px;
  color: var(--amarillo);
  opacity: 0.4;
}

.promo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--rojo);
  color: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 14px rgba(192,57,43,0.4);
}

.promo-info {
  padding: clamp(16px, 2vw, 22px);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.promo-title {
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.3;
}

.promo-description {
  color: var(--gris-claro);
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.55;
  flex: 1;
}

.promo-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.promo-price {
  font-family: var(--font-heading);
  font-size: clamp(21px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--amarillo);
  line-height: 1;
}

.promo-old-price {
  text-decoration: line-through;
  font-size: 14px;
  color: var(--gris-claro);
}

.promo-btn {
  background: linear-gradient(135deg, #2be07a, #1fa855);
  color: #fff;
  padding: 11px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
  font-size: 13px;
  font-weight: 700;
  align-self: flex-start;
  box-shadow: 0 6px 18px rgba(37,211,102,0.24);
}

.promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37,211,102,0.34);
}

/* Skeleton */
.promo-skeleton {
  pointer-events: none;
}

.skeleton-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(90deg, var(--gris-oscuro) 25%, #2a2a2a 50%, var(--gris-oscuro) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-body {
  padding: 20px;
}

.skeleton-line {
  height: 14px;
  border-radius: 7px;
  background: linear-gradient(90deg, var(--gris-oscuro) 25%, #2a2a2a 50%, var(--gris-oscuro) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  margin-bottom: 10px;
  width: 85%;
}

.skeleton-line.short { width: 55%; }

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.promo-pagination {
  bottom: 0 !important;
}

.promo-pagination .swiper-pagination-bullet {
  background: var(--gris-claro) !important;
  opacity: 0.5;
}

.promo-pagination .swiper-pagination-bullet-active {
  background: var(--amarillo) !important;
  opacity: 1;
}

/* CTA inferior */
.promos-cta {
  margin-top: 10px;
}

.promos-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: linear-gradient(135deg, rgba(245,166,35,0.09), rgba(245,166,35,0.02));
  border: 1px solid rgba(245,166,35,0.22);
  border-radius: 16px;
  padding: clamp(20px, 2.6vw, 28px) clamp(22px, 3vw, 32px);
  flex-wrap: wrap;
}

.promos-cta-text {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #e6e6e6;
  font-size: 15px;
  line-height: 1.5;
}

.promos-cta-text i {
  color: var(--negro);
  background: var(--amarillo);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* ========== SOBRE NOSOTROS ========== */
.about {
  background: var(--negro);
  position: relative;
  padding: 80px 0;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.18;
  z-index: 0;
}

.about::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.92) 100%);
  z-index: 1;
}

.about .container {
  position: relative;
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #cccccc;
  line-height: 1.7;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 25px 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e0e0e0;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 14px;
}

.feature i {
  color: var(--amarillo);
  font-size: 16px;
}

.btn-outline {
  border: 2px solid var(--amarillo);
  color: var(--amarillo);
  background: transparent;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  font-size: 14px;
}

.btn-outline:hover {
  background: var(--amarillo);
  color: var(--negro);
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stat-card {
  background: var(--gris-oscuro);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  border-left: 4px solid var(--rojo);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateX(5px);
}

.stat-card .number {
  font-size: 36px;
  font-weight: 800;
  display: block;
  color: var(--amarillo);
}

.stat-card .label {
  color: var(--gris-claro);
  font-size: 13px;
}

/* ========== SERVICIOS ========== */
.services {
  background: var(--negro-claro);
  position: relative;
  padding: 80px 0;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1486006920555-c77dcf18193c?w=1600&q=80');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  opacity: 0.22;
  z-index: 0;
}

.services::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(20,20,20,0.88) 0%, rgba(20,20,20,0.70) 50%, rgba(20,20,20,0.88) 100%);
  z-index: 1;
}

.services .container {
  position: relative;
  z-index: 2;
}

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

.service-card {
  background: rgba(30,30,30,0.85);
  padding: 35px 25px;
  border-radius: 4px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid var(--amarillo);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amarillo);
  transition: width 0.4s ease;
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(40,40,40,0.95);
  border-color: rgba(245,166,35,0.4);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6), 0 0 30px rgba(245,166,35,0.08);
}

.service-icon {
  font-size: 44px;
  color: var(--amarillo);
  margin-bottom: 18px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.service-card p {
  color: var(--gris-claro);
  font-size: 14px;
  line-height: 1.6;
}

/* ========== MARCAS ========== */
.brands {
  background: var(--negro);
  position: relative;
  padding: 80px 0;
}

.brands::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.20;
  z-index: 0;
}

.brands::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.95) 100%);
  z-index: 1;
}

.brands .container {
  position: relative;
  z-index: 2;
}

.brand-single {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, var(--gris-oscuro), var(--negro-claro));
  border-radius: 25px;
  border: 2px solid var(--amarillo);
  max-width: 450px;
  margin: 0 auto;
  transition: var(--transition);
}

.brand-single:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.brand-logo-single img {
  max-width: 160px;
  height: auto;
}

.brand-logo-single h3 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  color: var(--amarillo);
  margin: 15px 0 8px;
  letter-spacing: 3px;
}

.brand-logo-single p {
  color: var(--gris-claro);
  font-size: 13px;
}

/* ========== BUSCADOR ========== */
.searcher {
  background: var(--negro);
  position: relative;
  padding: 80px 0;
}

.searcher::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1544636331-e26879cd4d9b?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.20;
  z-index: 0;
}

.searcher::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.78) 100%);
  z-index: 1;
}

.searcher .container {
  position: relative;
  z-index: 2;
}

.pirelli-note {
  margin-top: 10px;
  color: var(--amarillo);
  font-size: 13px;
}

.searcher-card {
  background: var(--gris-oscuro);
  border-radius: 20px;
  padding: 25px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--gris-medio);
}

.search-type {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.type-btn {
  padding: 8px 24px;
  border: 2px solid var(--amarillo);
  background: transparent;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  color: var(--amarillo);
  font-size: 14px;
}

.type-btn.active,
.type-btn:hover {
  background: var(--amarillo);
  color: var(--negro);
}

.search-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.search-tab {
  padding: 6px 16px;
  background: var(--negro-claro);
  border: 1px solid var(--gris-medio);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  color: var(--gris-claro);
  font-size: 13px;
}

.search-tab.active,
.search-tab:hover {
  background: var(--amarillo);
  color: var(--negro);
  border-color: var(--amarillo);
}

.search-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.search-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.input-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.input-group.full-width {
  grid-column: span 3;
}

.input-group label {
  font-weight: 600;
  font-size: 13px;
  color: #e0e0e0;
}

.input-group label i {
  color: var(--amarillo);
  margin-right: 5px;
}

.input-group input,
.input-group select {
  padding: 10px 12px;
  border: 1px solid var(--gris-medio);
  border-radius: 8px;
  font-size: 14px;
  background: var(--negro-claro);
  color: #ffffff;
  transition: var(--transition);
}

.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: var(--amarillo);
  box-shadow: 0 0 0 2px rgba(255,193,7,0.2);
}

.search-results {
  margin-top: 25px;
  padding: 15px;
  background: var(--negro-claro);
  border-radius: 12px;
  border: 1px solid var(--gris-medio);
}

.results-header {
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gris-medio);
  color: var(--amarillo);
  font-size: 14px;
}

.results-list-item {
  padding: 10px;
  border-bottom: 1px solid var(--gris-medio);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.results-list-item:last-child {
  border-bottom: none;
}

.result-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 14px;
}

.result-spec {
  font-size: 12px;
  color: var(--gris-claro);
}

.btn-whatsapp {
  background: #25D366;
  border: none;
  padding: 6px 14px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  color: white;
  font-size: 12px;
}

.btn-whatsapp:hover {
  background: #128C7E;
}

.btn-large {
  grid-column: span 3;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  font-size: 16px;
}

.search-note {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--gris-claro);
  padding: 12px;
  background: var(--negro-claro);
  border-radius: 8px;
}

.search-note i {
  color: var(--amarillo);
  margin-right: 6px;
}

/* ========== GALERÍA ========== */
.gallery {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--gris-fondo);
  overflow: hidden;
}

.gallery::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.gallery-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.gallery-intro .section-header {
  text-align: left;
  margin-bottom: 0;
}

.gallery-count {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gris-claro);
  font-size: 13px;
  background: var(--negro-claro);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 16px;
  border-radius: 30px;
  flex-shrink: 0;
}

.gallery-count i {
  color: var(--amarillo);
}

.gallery-count strong {
  color: #fff;
}

/* ========== GALERÍA — DISEÑO EDITORIAL INNOVADOR ========== */

/* DESKTOP: CSS Grid asimétrico — primer item grande, resto en mosaico */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}

/* Patrón de layout: cada grupo de 5 items forma un bloque editorial */
.gallery-item:nth-child(10n + 1) {
  grid-column: span 7;
  grid-row: span 2;
}
.gallery-item:nth-child(10n + 2) {
  grid-column: span 5;
  grid-row: span 1;
}
.gallery-item:nth-child(10n + 3) {
  grid-column: span 5;
  grid-row: span 1;
}
.gallery-item:nth-child(10n + 4) {
  grid-column: span 4;
  grid-row: span 2;
}
.gallery-item:nth-child(10n + 5) {
  grid-column: span 4;
  grid-row: span 1;
}
.gallery-item:nth-child(10n + 6) {
  grid-column: span 4;
  grid-row: span 1;
}
.gallery-item:nth-child(10n + 7) {
  grid-column: span 5;
  grid-row: span 2;
}
.gallery-item:nth-child(10n + 8) {
  grid-column: span 7;
  grid-row: span 1;
}
.gallery-item:nth-child(10n + 9) {
  grid-column: span 4;
  grid-row: span 1;
}
.gallery-item:nth-child(10n + 10) {
  grid-column: span 3;
  grid-row: span 1;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--negro-claro);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.4s ease;
}

.gallery-item:hover {
  border-color: rgba(245,166,35,0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,166,35,0.2);
  transform: translateY(-3px) scale(1.01);
  z-index: 2;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Overlay con gradiente direccional + badge de número */
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.88) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px;
}

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

.gallery-item-caption {
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* Línea amarilla en hover — detalle editorial */
.gallery-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--amarillo);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover::after {
  width: 100%;
}

.gallery-zoom-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  opacity: 0;
  transform: scale(0.7) rotate(-10deg);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Tablet: layout más simple de 6 columnas */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 160px;
    gap: 10px;
  }
  .gallery-item:nth-child(10n + 1) { grid-column: span 4; grid-row: span 2; }
  .gallery-item:nth-child(10n + 2) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(10n + 3) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(10n + 4) { grid-column: span 3; grid-row: span 2; }
  .gallery-item:nth-child(10n + 5) { grid-column: span 3; grid-row: span 1; }
  .gallery-item:nth-child(10n + 6) { grid-column: span 3; grid-row: span 1; }
  .gallery-item:nth-child(10n + 7) { grid-column: span 3; grid-row: span 2; }
  .gallery-item:nth-child(10n + 8) { grid-column: span 3; grid-row: span 1; }
  .gallery-item:nth-child(10n + 9) { grid-column: span 3; grid-row: span 1; }
  .gallery-item:nth-child(10n + 10) { grid-column: span 6; grid-row: span 1; }
}

/* MÓVIL: carrusel horizontal con scroll snap — diseño de "film strip" */
@media (max-width: 640px) {
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 20px;
    grid-template-columns: unset;
    grid-auto-rows: unset;
    /* Ocultar scrollbar pero mantener funcionalidad */
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }

  /* Todos los items vuelven a ser "tarjetas" iguales en móvil */
  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: unset;
    grid-row: unset;
    flex: 0 0 75vw;
    max-width: 280px;
    height: 220px;
    scroll-snap-align: start;
    border-radius: 16px;
    transform: none !important;
  }

  /* El primer item es más grande — featured card */
  .gallery-item:first-child {
    flex: 0 0 85vw;
    max-width: 340px;
    height: 260px;
  }

  /* Indicador de scroll en móvil */
  .gallery-grid::after {
    content: '';
    flex: 0 0 10px;
  }

  /* La línea amarilla en móvil es lateral izquierda en hover */
  .gallery-item::after {
    width: 3px;
    height: 0;
    bottom: 0;
    left: 0;
    top: auto;
    transition: height 0.4s ease;
  }
  .gallery-item:hover::after {
    height: 100%;
    width: 3px;
  }
}

/* Indicador de scroll en móvil debajo de la grilla */
.gallery-scroll-hint {
  display: none;
  text-align: center;
  color: var(--gris-claro);
  font-size: 12px;
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}
.gallery-scroll-hint i {
  color: var(--amarillo);
  margin: 0 4px;
}
@media (max-width: 640px) {
  .gallery-scroll-hint { display: block; }
}

/* Skeletons de galería */
.gallery-skeleton {
  border-radius: 12px;
  background: linear-gradient(90deg, var(--gris-oscuro) 25%, #2a2a2a 50%, var(--gris-oscuro) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.gallery-skeleton.h1 { grid-column: span 7; grid-row: span 2; }
.gallery-skeleton.h2 { grid-column: span 5; grid-row: span 1; }
.gallery-skeleton.h3 { grid-column: span 4; grid-row: span 1; }

@media (max-width: 640px) {
  .gallery-skeleton {
    flex: 0 0 75vw;
    height: 220px;
    grid-column: unset;
    grid-row: unset;
  }
  .gallery-skeleton.h1 {
    flex: 0 0 85vw;
    height: 260px;
  }
}

.gallery-empty-state {
  text-align: center;
  padding: 70px 20px;
  color: var(--gris-claro);
  background: var(--negro-claro);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 14px;
}

.gallery-empty-state i {
  font-size: 42px;
  color: var(--amarillo);
  margin-bottom: 14px;
  display: block;
  opacity: 0.7;
}

/* ---- LIGHTBOX ---- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.open {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 0.35s ease-out;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: var(--shadow-hover);
}

.lightbox-caption {
  color: #fff;
  margin-top: 14px;
  font-size: 14px;
  text-align: center;
  max-width: 600px;
  color: var(--gris-claro);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 3001;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  font-size: 16px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 18px;
}

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

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--amarillo);
  color: var(--negro);
  border-color: var(--amarillo);
}

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gris-claro);
  font-size: 13px;
  background: rgba(255,255,255,0.06);
  padding: 6px 16px;
  border-radius: 30px;
  z-index: 3001;
}



/* ========== CONTACTO ========== */
.contact {
  background: var(--negro-claro);
  position: relative;
  padding: 80px 0;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.18;
  z-index: 0;
}

.contact::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(20,20,20,0.90) 0%, rgba(20,20,20,0.78) 100%);
  z-index: 1;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 35px;
}

.contact-card {
  background: rgba(25,25,25,0.90);
  padding: 35px 25px;
  border-radius: 4px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.07);
  border-bottom: 3px solid var(--amarillo);
  backdrop-filter: blur(10px);
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,166,35,0.5);
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

.contact-icon {
  font-size: 36px;
  color: var(--amarillo);
  margin-bottom: 15px;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-card p {
  color: var(--gris-claro);
  font-size: 13px;
}

.contact-value {
  font-size: 16px;
  font-weight: 700;
  margin: 12px 0;
  color: var(--amarillo);
  word-break: break-word;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rojo);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
  font-size: 13px;
}

.contact-btn:hover {
  background: var(--rojo-oscuro);
}

.instagram-btn {
  background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
}

.schedule-info {
  text-align: center;
  padding: 20px;
  background: var(--gris-oscuro);
  border-radius: 15px;
  border: 1px solid var(--gris-medio);
}

.schedule-info p {
  color: #e0e0e0;
  margin-bottom: 8px;
  font-size: 13px;
}

.schedule-info i {
  color: var(--amarillo);
  margin-right: 6px;
}

/* ========== FAQ ========== */
.faq {
  background: var(--negro);
  position: relative;
  padding: 80px 0;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1540962351504-03099e0a754b?w=1600&q=80');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  opacity: 0.15;
  z-index: 0;
}

.faq::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,10,10,0.93) 0%, rgba(10,10,10,0.80) 100%);
  z-index: 1;
}

.faq .container {
  position: relative;
  z-index: 2;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--gris-oscuro);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gris-medio);
}

.faq-question {
  width: 100%;
  padding: 15px;
  background: var(--gris-oscuro);
  border: none;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  color: #ffffff;
}

.faq-question:hover {
  background: var(--gris-medio);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: var(--amarillo);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 15px;
  color: var(--gris-claro);
  font-size: 14px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 15px 15px;
}

/* ========== BOTÓN FLOTANTE WHATSAPP ========== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #128C7E;
}

.whatsapp-tooltip {
  position: absolute;
  right: 65px;
  background: var(--negro);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 70px;
}

/* ========== BOTÓN SCROLL TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--amarillo);
  color: var(--negro);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 100;
  border: none;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}

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

.scroll-top:hover {
  background: var(--amarillo-oscuro);
  transform: translateY(-2px);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--negro);
  color: #e0e0e0;
  padding: 50px 0 20px;
  border-top: 1px solid var(--gris-oscuro);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h3,
.footer-col h4 {
  font-family: var(--font-heading);
  margin-bottom: 15px;
  color: #ffffff;
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-col h3::after,
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--amarillo);
}

.footer-col h3 span {
  color: var(--amarillo);
}

.footer-col p {
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--gris-claro);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.social-links a {
  color: #ffffff;
  background: var(--gris-oscuro);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--amarillo);
  color: var(--negro);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: var(--gris-claro);
  text-decoration: none;
  transition: var(--transition);
  font-size: 13px;
}

.footer-col ul li a:hover {
  color: var(--amarillo);
  padding-left: 3px;
}

.copyright {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid var(--gris-oscuro);
  font-size: 12px;
  color: var(--gris-claro);
}

/* ========== FOOTER MAP CARD ========== */
.footer-map-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,193,7,0.2);
  background: var(--gris-oscuro);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-map-card:hover {
  border-color: rgba(255,193,7,0.5);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.footer-map-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(245,166,35,0.1);
  border-bottom: 1px solid rgba(255,193,7,0.15);
}

.footer-map-badge i {
  color: var(--amarillo);
  font-size: 13px;
}

.footer-map-badge span {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.footer-map-frame {
  position: relative;
  overflow: hidden;
  /* Filtro oscuro para que el mapa combine con el tema */
  filter: grayscale(30%) brightness(0.85) contrast(1.05);
  transition: filter 0.3s ease;
}

.footer-map-card:hover .footer-map-frame {
  filter: grayscale(0%) brightness(0.95) contrast(1.05);
}

.footer-map-frame iframe {
  display: block;
  width: 100%;
  height: 180px;
  border: 0;
}

.footer-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px;
  background: transparent;
  color: var(--amarillo);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  border-top: 1px solid rgba(255,193,7,0.15);
  transition: background 0.25s ease, color 0.25s ease;
}

.footer-map-btn:hover {
  background: var(--amarillo);
  color: var(--negro);
}

/* ========== RESPONSIVE MÓVIL ========== */

/* Tablet */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content h1,
  .hero-content h2 {
    font-size: 48px;
  }
  
  .search-form {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .input-group.full-width {
    grid-column: span 2;
  }
  
  .btn-large {
    grid-column: span 2;
  }

  /* Promos tablet: el tamaño ya es fluido (clamp/aspect-ratio), solo ajustamos proporción */
  .banner-carousel .swiper-slide:not(.banner-solo-imagen) {
    aspect-ratio: 16 / 8;
  }

  .banner-text-block {
    max-width: 70%;
  }
}

/* Móvil - MENÚ CORREGIDO */
@media (max-width: 768px) {
  /* Header móvil */
  .header-container {
    padding: 10px 15px;
  }
  
  .logo-img {
    height: 56px;
    border-radius: 4px;
  }
  
  /* Ocultar botón WhatsApp en móvil */
  .btn-whatsapp-header {
    display: none !important;
  }
  
  /* Mostrar icono hamburguesa */
  .mobile-menu-icon {
    display: flex !important;
    position: relative;
    z-index: 1001;
  }
  
  /* Menú móvil - AHORA VISIBLE Y CENTRADO */
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--negro);
    box-shadow: 2px 0 20px rgba(0,0,0,0.5);
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    border-right: 2px solid var(--amarillo);
    overflow-y: auto;
    overflow-x: hidden;
  }
  
  .nav.active {
    left: 0;
  }
  
  .nav-menu {
    flex-direction: column;
    padding: 80px 25px 30px 25px;
    gap: 20px;
    width: 100%;
  }
  
  .nav-link {
    display: block;
    padding: 12px 0;
    font-size: 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: var(--amarillo);
    padding-left: 10px;
  }
  
  /* Prevenir scroll del body cuando el menú está abierto */
  body.menu-open {
    overflow: hidden;
  }
  
  /* Overlay para cerrar menú al hacer click fuera */
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 999;
    pointer-events: auto;
  }
  
  /* Secciones - padding reducido */
  .about,
  .services,
  .brands,
  .searcher,
  .gallery,
  .contact,
  .faq,
  .promos-section-full {
    padding: 50px 0;
  }

  /* Promos encabezado móvil */
  .promos-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .btn-promos-wa {
    width: 100%;
    justify-content: center;
  }

  /* Banner carousel móvil: proporción más alta para que el texto entre cómodo */
  .banner-carousel .swiper-slide:not(.banner-solo-imagen) {
    aspect-ratio: 4 / 3.6;
    min-height: 320px;
  }

  .banner-overlay-content {
    align-items: flex-end;
    padding-bottom: 36px;
  }

  .banner-text-block {
    max-width: 100%;
  }

  .banner-prev,
  .banner-next {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .banner-prev { left: 10px; }
  .banner-next { right: 10px; }

  /* Promo cards nav móvil */
  .promo-cards-nav { display: none; }

  .promos-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .promos-cta-text {
    justify-content: center;
    font-size: 14px;
  }
  
  /* Hero móvil */
  .hero {
    height: 100vh;
    min-height: 500px;
  }
  
  .hero-content h1,
  .hero-content h2 {
    font-size: 64px;
    letter-spacing: 2px;
  }
  
  .hero-badge {
    font-size: 10px;
    padding: 4px 12px;
  }
  
  .hero-content p {
    font-size: 14px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  
  /* Sección título móvil */
  .section-title {
    font-size: 32px;
  }
  
  /* Servicios grid móvil */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 20px;
  }
  
  /* Contact grid móvil */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Footer grid móvil */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .footer-col h3::after,
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
  
  /* Buscador móvil */
  .searcher-card {
    padding: 20px;
  }
  
  .search-type {
    gap: 10px;
  }
  
  .type-btn {
    padding: 6px 20px;
    font-size: 13px;
  }
  
  .search-tabs {
    gap: 6px;
  }
  
  .search-tab {
    padding: 5px 12px;
    font-size: 11px;
  }
  
  .search-form {
    grid-template-columns: 1fr;
  }
  
  .input-group.full-width {
    grid-column: span 1;
  }
  
  .btn-large {
    grid-column: span 1;
  }
  
  .results-list-item {
    flex-direction: column;
    text-align: center;
  }
  
  /* Brand móvil */
  .brand-single {
    margin: 0 15px;
    padding: 25px 20px;
  }
  
  .brand-logo-single img {
    max-width: 130px;
  }
  
  .brand-logo-single h3 {
    font-size: 24px;
  }
  
  /* FAQ móvil */
  .faq-question {
    font-size: 14px;
    padding: 12px;
  }
  
  /* Botones flotantes móvil */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
  
  .scroll-top {
    width: 38px;
    height: 38px;
    font-size: 16px;
    bottom: 15px;
    left: 15px;
  }
  
  /* Ajustes generales móvil */
  .container {
    padding: 0 15px;
  }
  
  .hero-content-wrapper {
    padding: 0 15px;
  }

  /* Galería intro en móvil */
  .gallery-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .gallery-intro .section-header {
    text-align: left;
  }

  /* Lightbox en móvil */
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  /* Schedule info móvil */
  .schedule-info {
    padding: 15px;
  }
  .schedule-info p {
    font-size: 12px;
  }
}

/* Móvil pequeño */
@media (max-width: 480px) {
  .hero-content h1,
  .hero-content h2 {
    font-size: 52px;
    letter-spacing: 1.5px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .contact-value {
    font-size: 14px;
  }
  
  .contact-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  /* Menú más pequeño en móviles muy pequeños */
  .nav {
    width: 80%;
    max-width: 280px;
  }
  
  .nav-menu {
    padding: 80px 20px 30px 20px;
  }
  
  .nav-link {
    font-size: 16px;
    padding: 10px 0;
  }
}

/* ========== SCROLLBAR PERSONALIZADA ========== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--gris-oscuro);
}

::-webkit-scrollbar-thumb {
  background: var(--amarillo);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--amarillo-oscuro);
}

/* ========== iOS / MOBILE PARALLAX FIX ========== */
/* background-attachment: fixed causa glitches de scroll en iOS y Android.
   En mobile usamos scroll normal. */
@media (max-width: 1024px) {
  .promos-bg-layer,
  .contact::before,
  .faq::before,
  .nosotros-bg,
  .servicios-bg,
  .brands::before,
  .searcher::before {
    background-attachment: scroll !important;
  }
}
