/* =============================================
   GRUPO SAYRO — Hoja de estilos principal
   Rediseño profesional 2026
   ============================================= */

/* ========== VARIABLES Y RESET ========== */
:root {
  --color-primario: #C62828;
  --color-primario-oscuro: #8E0000;
  --color-primario-claro: #EF5350;
  --color-secundario: #C6952B;
  --color-secundario-claro: #F5D576;
  --color-secundario-oscuro: #9A7420;
  --color-oscuro: #1A1A1A;
  --color-texto: #333333;
  --color-texto-light: #71717A;
  --color-fondo: #FAFAFA;
  --color-fondo-alt: #F4F4F5;
  --color-blanco: #FFFFFF;
  --color-borde: #E4E4E7;

  --fuente-display: 'Bebas Neue', sans-serif;
  --fuente-body: 'DM Sans', sans-serif;

  --sombra-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --sombra-md: 0 4px 20px rgba(0,0,0,0.08);
  --sombra-lg: 0 10px 40px rgba(0,0,0,0.12);
  --sombra-xl: 0 20px 60px rgba(0,0,0,0.15);
  --sombra-roja: 0 8px 30px rgba(198,40,40,0.3);
  --sombra-dorada: 0 8px 30px rgba(198,149,43,0.3);

  --radio-sm: 8px;
  --radio-md: 12px;
  --radio-lg: 20px;
  --radio-xl: 28px;

  --transicion: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transicion-rapida: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transicion-lenta: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--fuente-body);
  color: var(--color-texto);
  background-color: var(--color-fondo);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ========== UTILIDADES ========== */
.contenedor {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.seccion-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.seccion-header__etiqueta {
  display: inline-block;
  font-family: var(--fuente-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-secundario);
  margin-bottom: 0.75rem;
}

.seccion-header__titulo {
  font-family: var(--fuente-display);
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--color-oscuro);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.seccion-header__titulo--izq {
  text-align: left;
}

.seccion-header__linea {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primario), var(--color-secundario));
  border-radius: 2px;
  margin: 0 auto;
}

.seccion-header__linea--izq {
  margin: 0;
}

.seccion-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ========== BOTONES ========== */
.boton {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fuente-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 32px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all var(--transicion);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.boton__flecha {
  transition: transform var(--transicion);
}

.boton:hover .boton__flecha {
  transform: translateX(4px);
}

.boton--rojo {
  background-color: var(--color-primario);
  color: var(--color-blanco);
}

.boton--rojo:hover {
  background-color: var(--color-primario-oscuro);
  transform: translateY(-3px);
  box-shadow: var(--sombra-roja);
}

.boton--dorado {
  background: linear-gradient(135deg, var(--color-secundario), var(--color-secundario-claro));
  color: var(--color-oscuro);
  font-weight: 700;
}

.boton--dorado:hover {
  transform: translateY(-3px);
  box-shadow: var(--sombra-dorada);
}

.boton--fantasma {
  background: rgba(255,255,255,0.1);
  color: var(--color-blanco);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.boton--fantasma:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}

.boton--ancho {
  width: 100%;
  justify-content: center;
}

/* ========== HEADER / NAVBAR ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transicion);
  background: transparent;
}

.header--scroll {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.08);
}

.header--scroll .header__enlace {
  color: var(--color-oscuro);
}

.header--scroll .header__enlace:hover {
  color: var(--color-primario);
}

.header__contenedor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
  transition: height var(--transicion);
}

.header--scroll .header__contenedor {
  height: 65px;
}

.header__logo-img {
  height: 50px;
  width: auto;
  border-radius: 50%;
  transition: height var(--transicion);
}

.header--scroll .header__logo-img {
  height: 42px;
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__menu {
  display: flex;
  gap: 2rem;
}

.header__enlace {
  font-family: var(--fuente-body);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--color-blanco);
  position: relative;
  padding: 6px 0;
  transition: color var(--transicion);
}

.header__enlace::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primario), var(--color-secundario));
  border-radius: 1px;
  transition: all var(--transicion);
  transform: translateX(-50%);
}

.header__enlace:hover::after,
.header__enlace--activo::after {
  width: 100%;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--fuente-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: 60px;
  background: linear-gradient(135deg, var(--color-secundario), var(--color-secundario-claro));
  color: var(--color-oscuro);
  transition: all var(--transicion);
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra-dorada);
}

/* Hamburguesa */
.header__hamburguesa {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.header__hamburguesa-linea {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-blanco);
  border-radius: 2px;
  transition: all var(--transicion);
  transform-origin: center;
}

.header--scroll .header__hamburguesa-linea {
  background-color: var(--color-oscuro);
}

.header__hamburguesa--activo .header__hamburguesa-linea {
  background-color: var(--color-oscuro);
}

.header__hamburguesa--activo .header__hamburguesa-linea:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.header__hamburguesa--activo .header__hamburguesa-linea:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.header__hamburguesa--activo .header__hamburguesa-linea:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Overlay del menú */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transicion);
}

.menu-overlay--visible {
  opacity: 1;
  visibility: visible;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Imagen de fondo con Ken Burns zoom lento */
.hero__imagen {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  animation: kenBurns 25s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

/* Overlay cinematográfico */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(142, 0, 0, 0.88) 0%,
      rgba(198, 40, 40, 0.7) 30%,
      rgba(26, 26, 26, 0.6) 60%,
      rgba(26, 26, 26, 0.85) 100%
    );
  z-index: 1;
}

.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

/* Partículas decorativas */
.hero__particulas {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.particula {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: flotar linear infinite;
}

@keyframes flotar {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero__contenido {
  position: relative;
  z-index: 3;
  padding: 0 5%;
  max-width: 750px;
}

.hero__etiqueta {
  font-family: var(--fuente-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-secundario-claro);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: aparecerArriba 0.8s ease 0.3s forwards;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero__titulo {
  font-family: var(--fuente-display);
  font-size: 7rem;
  font-weight: 400;
  color: var(--color-blanco);
  line-height: 0.95;
  margin-bottom: 0.75rem;
  letter-spacing: 3px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.hero__palabra {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: aparecerPalabra 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__palabra:nth-child(1) { animation-delay: 0.5s; }
.hero__palabra:nth-child(2) { animation-delay: 0.65s; }
.hero__palabra:nth-child(3) { animation-delay: 0.8s; }
.hero__palabra:nth-child(4) { animation-delay: 0.95s; }

@keyframes aparecerPalabra {
  to { opacity: 1; transform: translateY(0); }
}

.hero__subtitulo {
  font-family: var(--fuente-display);
  font-size: 2.5rem;
  letter-spacing: 12px;
  color: var(--color-secundario-claro);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: aparecerArriba 0.8s ease 1.2s forwards;
  text-shadow: 0 2px 15px rgba(198,149,43,0.3);
}

.hero__descripcion {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 500px;
  opacity: 0;
  animation: aparecerArriba 0.8s ease 1.4s forwards;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.hero__acciones {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: aparecerArriba 0.8s ease 1.6s forwards;
}

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

/* Indicador de scroll */
.hero__scroll-indicador {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: aparecerArriba 0.8s ease 2s forwards;
}

.hero__scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll-rueda {
  width: 3px;
  height: 8px;
  background-color: var(--color-secundario-claro);
  border-radius: 2px;
  animation: scrollRueda 1.8s ease-in-out infinite;
}

@keyframes scrollRueda {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

.hero__scroll-texto {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
}

/* ========== SERVICIOS ========== */
.servicios {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  background-color: var(--color-oscuro);
  overflow: hidden;
}

/* Patrón de fondo sutil */
.servicios::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(198,40,40,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(198,149,43,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.servicios__inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.servicios__cabecera {
  text-align: center;
  margin-bottom: 2.5rem;
}

.servicios__cabecera .seccion-header__etiqueta {
  color: var(--color-secundario-claro);
}

.servicios__cabecera .seccion-header__titulo {
  color: var(--color-blanco);
}

/* === Bento Grid Layout === */
.servicios__bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  max-height: 55vh;
}

/* === Bento Cards Base === */
.bento {
  border-radius: var(--radio-lg);
  position: relative;
  overflow: hidden;
  cursor: default;
  /* Start hidden — cada card tiene su propia dirección de entrada */
  opacity: 0;
  transition: none;
}

/* Posiciones iniciales — cada card viene desde afuera en distinta dirección */
.bento[data-bento="0"] { transform: translateX(-120px) scale(0.85); }       /* hero: desde la izquierda */
.bento[data-bento="1"] { transform: translateY(-100px) scale(0.85); }       /* calibración: desde arriba */
.bento[data-bento="2"] { transform: translateX(120px) scale(0.85); }        /* llantas: desde la derecha */
.bento[data-bento="3"] { transform: translateY(100px) scale(0.85); }        /* niveles: desde abajo */
.bento[data-bento="4"] { transform: translate(100px, 80px) scale(0.85); }   /* litros: desde abajo-derecha */

/* Animaciones de entrada — cada una desde su dirección */
.bento[data-bento="0"].visible { animation: entrarIzquierda 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0s forwards; }
.bento[data-bento="1"].visible { animation: entrarArriba    0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards; }
.bento[data-bento="2"].visible { animation: entrarDerecha   0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards; }
.bento[data-bento="3"].visible { animation: entrarAbajo     0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards; }
.bento[data-bento="4"].visible { animation: entrarEsquina   0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards; }

@keyframes entrarIzquierda {
  0%   { opacity: 0; transform: translateX(-120px) scale(0.85); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes entrarArriba {
  0%   { opacity: 0; transform: translateY(-100px) scale(0.85); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes entrarDerecha {
  0%   { opacity: 0; transform: translateX(120px) scale(0.85); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes entrarAbajo {
  0%   { opacity: 0; transform: translateY(100px) scale(0.85); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes entrarEsquina {
  0%   { opacity: 0; transform: translate(100px, 80px) scale(0.85); }
  100% { opacity: 1; transform: translate(0, 0) scale(1); }
}

/* Re-enable hover transitions AFTER entrance animation completes */
.bento.bento--hoverable {
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.bento__contenido {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
}

/* ——————————————————————————————
   HERO CARD (Combustibles) — 2 col x 2 row
   Animated gradient on hover
   —————————————————————————————— */
.bento--hero {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(155deg, var(--color-primario) 0%, var(--color-primario-oscuro) 50%, #5c0000 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  transition: background-position 0.8s ease;
}

.bento--hero.bento--hoverable:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(198,40,40,0.35);
  background-position: 100% 50%;
  opacity: 1;
}

/* Cruces decorativas — muy sutiles */
.bento--hero .bento__fondo {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.bento--hero .bento__contenido {
  padding: 2rem;
  justify-content: space-between;
}

.bento--hero .bento__titulo {
  font-family: var(--fuente-display);
  font-size: 2.2rem;
  color: var(--color-blanco);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.bento--hero .bento__texto {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 90%;
}

/* Tags */
.bento__tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.bento__tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 30px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-secundario-claro);
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease, transform 0.3s ease;
}

.bento__tag:hover {
  background: rgba(255,255,255,0.22);
  transform: scale(1.05);
}

/* Stat counter */
.bento__stat {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.bento__stat-num {
  font-family: var(--fuente-display);
  font-size: 3.5rem;
  color: var(--color-secundario-claro);
  line-height: 1;
  letter-spacing: 1px;
}

.bento__stat-pct {
  font-family: var(--fuente-display);
  font-size: 2rem;
  color: var(--color-secundario-claro);
}

.bento__stat-label {
  width: 100%;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.15rem;
}

/* ——————————————————————————————
   WATERMARK SILHOUETTES
   SVG siluetas de fondo en esquina inferior derecha
   —————————————————————————————— */
.bento__watermark {
  position: absolute;
  bottom: -8%;
  right: -5%;
  width: 55%;
  height: auto;
  max-height: 85%;
  color: rgba(255,255,255,0.07);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.bento__watermark--sm {
  width: 65%;
  bottom: -12%;
  right: -8%;
  color: rgba(255,255,255,0.06);
}

/* Gold card: dark watermark */
.bento__watermark--oscuro {
  color: rgba(26,26,26,0.1);
}

/* Hover: watermark sube ligeramente de opacidad y se mueve sutilmente */
.bento.bento--hoverable:hover .bento__watermark {
  opacity: 1.6;
  transform: scale(1.05) translate(-3%, -3%);
}

/* ——————————————————————————————
   DARK CARDS — gold glow hover
   —————————————————————————————— */
.bento--oscuro {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Subtle inner glow layer for hover */
.bento--oscuro::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 0%, rgba(198,149,43,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 1;
}

.bento--oscuro.bento--hoverable:hover {
  transform: translateY(-6px);
  border-color: rgba(198,149,43,0.45);
  box-shadow:
    0 0 20px rgba(198,149,43,0.12),
    0 12px 40px rgba(0,0,0,0.5);
}

.bento--oscuro.bento--hoverable:hover::before {
  opacity: 1;
}

.bento--oscuro .bento__titulo {
  font-family: var(--fuente-display);
  font-size: 1.1rem;
  color: var(--color-blanco);
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.bento--oscuro .bento__texto {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  line-height: 1.5;
  transition: color 0.35s ease;
}

.bento--oscuro.bento--hoverable:hover .bento__texto {
  color: rgba(255,255,255,0.72);
}

/* ——————————————————————————————
   GOLD CARD — shimmer effect
   —————————————————————————————— */
.bento--dorado {
  background: linear-gradient(155deg, var(--color-secundario) 0%, var(--color-secundario-claro) 100%);
}

/* Shimmer overlay */
.bento--dorado::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.3) 45%,
    rgba(255,255,255,0.5) 50%,
    rgba(255,255,255,0.3) 55%,
    transparent 80%
  );
  transform: skewX(-20deg);
  transition: none;
  pointer-events: none;
  z-index: 1;
}

.bento--dorado.bento--hoverable:hover::after {
  animation: shimmerDorado 0.8s ease forwards;
}

@keyframes shimmerDorado {
  0%   { left: -100%; }
  100% { left: 130%; }
}

.bento--dorado.bento--hoverable:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 25px rgba(198,149,43,0.25),
    0 12px 40px rgba(198,149,43,0.2);
}

.bento__titulo--oscuro {
  color: var(--color-oscuro) !important;
}

.bento__texto--oscuro {
  color: rgba(26,26,26,0.7) !important;
}

/* Small title/text variants for compact cards */
.bento__titulo--sm {
  font-size: 1rem !important;
}

.bento__texto--sm {
  font-size: 0.8rem !important;
}

/* === Servicios Footer === */
.servicios__pie {
  text-align: center;
  margin-top: 2rem;
}

/* ========== PRECIOS DEL DIA — TABLERO LED ========== */
.precios {
  position: relative;
  padding: 5rem 0 4rem;
  background: #060606;
  overflow: hidden;
}

.precios::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,213,118,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.precios__inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 5%;
  text-align: center;
}

.precios__lema {
  font-family: var(--fuente-display);
  font-size: 2.4rem;
  color: var(--color-blanco);
  letter-spacing: 3px;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

.precios__lema-dorado {
  color: var(--color-secundario-claro);
}

/* Escena */
.precios__escena {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- TABLERO LED ---- */
.tablero-led {
  width: 100%;
  max-width: 460px;
}

.tablero-led__marco {
  background: linear-gradient(180deg, #252525 0%, #1a1a1a 40%, #131313 100%);
  border: 2px solid #333;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 40px rgba(245,213,118,0.06),
    0 25px 80px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.05);
  animation: pulsoTablero 5s ease-in-out infinite;
}

@keyframes pulsoTablero {
  0%, 100% { box-shadow: 0 0 30px rgba(245,213,118,0.05), 0 25px 80px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.05); }
  50%      { box-shadow: 0 0 60px rgba(245,213,118,0.1), 0 25px 80px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.05); }
}

/* Cabeza del tablero */
.tablero-led__cabeza {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.65rem 1.5rem;
  border-bottom: 1px solid #222;
  background: linear-gradient(180deg, #1e1e1e, #171717);
}

.tablero-led__led-ind {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C62828;
  box-shadow: 0 0 6px rgba(198,40,40,0.7);
  animation: parpadeoLed 3s ease-in-out infinite;
}

.tablero-led__led-ind--verde {
  background: #4CAF50;
  box-shadow: 0 0 6px rgba(76,175,80,0.7);
  animation-delay: 1.5s;
}

@keyframes parpadeoLed {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.tablero-led__rotulo {
  font-family: var(--fuente-display);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 5px;
}

/* Pantalla (el display negro) */
.tablero-led__pantalla {
  position: relative;
  background: #050505;
  margin: 0.6rem;
  border-radius: 8px;
  padding: 0.4rem 0;
  overflow: hidden;
}

/* Scanlines CRT */
.tablero-led__scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.15) 2px,
    rgba(0,0,0,0.15) 4px
  );
  pointer-events: none;
  z-index: 3;
}

/* Filas de precio */
.tablero-led__fila {
  display: flex;
  align-items: center;
  padding: 0.9rem 1.25rem;
  border-radius: 6px;
  cursor: default;
  transition: background 0.35s ease, opacity 0.35s ease;
  position: relative;
  z-index: 2;
}

/* Hover: dim siblings */
.tablero-led__pantalla:hover .tablero-led__fila {
  opacity: 0.3;
}

.tablero-led__pantalla:hover .tablero-led__fila:hover,
.tablero-led__fila--activa {
  opacity: 1 !important;
  background: rgba(245,213,118,0.04);
}

/* LED dot indicator */
.tablero-led__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--led-color);
  box-shadow: 0 0 8px var(--led-color);
  flex-shrink: 0;
  margin-right: 1rem;
  transition: box-shadow 0.35s ease;
}

.tablero-led__fila:hover .tablero-led__dot {
  box-shadow: 0 0 14px var(--led-color), 0 0 28px var(--led-color);
  animation: pulsoDot 1s ease-in-out infinite;
}

@keyframes pulsoDot {
  0%, 100% { box-shadow: 0 0 14px var(--led-color), 0 0 28px var(--led-color); }
  50% { box-shadow: 0 0 8px var(--led-color), 0 0 16px var(--led-color); }
}

.tablero-led__nombre {
  font-family: var(--fuente-display);
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 4px;
  flex: 1;
  text-align: left;
  transition: color 0.35s ease;
}

.tablero-led__fila:hover .tablero-led__nombre {
  color: rgba(255,255,255,0.85);
}

/* Precio / monto */
.tablero-led__monto {
  display: flex;
  align-items: baseline;
}

.tablero-led__signo {
  font-family: var(--fuente-display);
  font-size: 1.2rem;
  color: var(--color-secundario-claro);
  margin-right: 2px;
  text-shadow: 0 0 8px rgba(245,213,118,0.3);
}

.tablero-led__digitos {
  font-family: var(--fuente-display);
  font-size: 2.6rem;
  color: var(--color-secundario-claro);
  letter-spacing: 2px;
  line-height: 1;
  text-shadow:
    0 0 8px rgba(245,213,118,0.5),
    0 0 20px rgba(245,213,118,0.25),
    0 0 45px rgba(245,213,118,0.1);
  transition: text-shadow 0.35s ease;
}

.tablero-led__fila:hover .tablero-led__digitos,
.tablero-led__fila:hover .tablero-led__signo {
  text-shadow:
    0 0 10px rgba(245,213,118,0.9),
    0 0 30px rgba(245,213,118,0.5),
    0 0 60px rgba(245,213,118,0.2);
}

/* ---- Digit Roller (slot-machine flip) ---- */
.digito-roller {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  vertical-align: bottom;
}

.digito-roller__strip {
  display: flex;
  flex-direction: column;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.digito-roller__strip span {
  display: block;
  height: 1em;
  line-height: 1;
}

.digito-punto {
  display: inline-block;
  vertical-align: bottom;
  line-height: 1;
}

/* Separador entre filas */
.tablero-led__separador {
  height: 1px;
  margin: 0 1.25rem;
  background: linear-gradient(90deg, transparent, rgba(245,213,118,0.1), transparent);
}

/* Pie del tablero */
.tablero-led__pie {
  padding: 0.5rem 1.5rem;
  border-top: 1px solid #222;
  background: linear-gradient(180deg, #171717, #131313);
}

.tablero-led__pie span {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Poste del letrero */
.tablero-led__poste {
  width: 14px;
  height: 45px;
  margin: 0 auto;
  background: linear-gradient(90deg, #3a3a3a, #252525, #3a3a3a);
  position: relative;
}

.tablero-led__poste-base {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: linear-gradient(90deg, #2a2a2a, #444, #2a2a2a);
  border-radius: 2px;
}

/* ---- SELLO LITROS GARANTIZADOS ---- */
.precios__sello {
  margin-top: 2rem;
}

.precios__sello-anillo {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 2px solid var(--color-secundario);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--color-secundario);
  background: rgba(198,149,43,0.06);
  animation: balanceoSello 6s ease-in-out infinite;
}

@keyframes balanceoSello {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}

.precios__sello-anillo svg {
  opacity: 0.7;
}

.precios__sello-anillo span {
  font-family: var(--fuente-display);
  font-size: 0.5rem;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.3;
}

/* ========== BANNER JUEGO — Marquesina Casino ========== */
.juego-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 3rem 5%;
  text-align: center;
}

.juego-banner__marquesina {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  padding: 3.5rem 3rem;
  background: linear-gradient(145deg, #2a1200, #1a0800, #100400);
  border: 4px solid #C6952B;
  border-radius: 22px;
  text-align: center;
  overflow: hidden;
  box-shadow:
    0 0 50px rgba(198,149,43,0.3),
    0 0 120px rgba(198,40,40,0.15),
    inset 0 0 60px rgba(198,149,43,0.05),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Luces animadas en los 4 bordes */
.juego-banner__luces {
  position: absolute;
  z-index: 1;
}

.juego-banner__luces--top,
.juego-banner__luces--bottom {
  left: 0;
  right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    #C6952B 0px,
    #C6952B 8px,
    transparent 8px,
    transparent 16px
  );
  background-size: 32px 5px;
  animation: lucesHorizontal 0.8s linear infinite;
}

.juego-banner__luces--top { top: 0; }
.juego-banner__luces--bottom { bottom: 0; animation-direction: reverse; }

.juego-banner__luces--left,
.juego-banner__luces--right {
  top: 0;
  bottom: 0;
  width: 5px;
  background: repeating-linear-gradient(
    180deg,
    #C6952B 0px,
    #C6952B 8px,
    transparent 8px,
    transparent 16px
  );
  background-size: 5px 32px;
  animation: lucesVertical 0.8s linear infinite;
}

.juego-banner__luces--left { left: 0; }
.juego-banner__luces--right { right: 0; animation-direction: reverse; }

@keyframes lucesHorizontal {
  0% { background-position: 0 0; }
  100% { background-position: 32px 0; }
}

@keyframes lucesVertical {
  0% { background-position: 0 0; }
  100% { background-position: 0 32px; }
}

.juego-banner__contenido {
  position: relative;
  z-index: 2;
  text-align: center;
}

.juego-banner__etiqueta {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #C6952B;
  margin-bottom: 1rem;
}

.juego-banner__titulo {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: #FFFFFF;
  letter-spacing: 6px;
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow:
    0 0 25px rgba(198,149,43,0.4),
    0 2px 4px rgba(0,0,0,0.5),
    0 0 80px rgba(198,40,40,0.2);
  animation: brilloTitulo 3s ease-in-out infinite;
}

@keyframes brilloTitulo {
  0%, 100% { text-shadow: 0 0 25px rgba(198,149,43,0.4), 0 2px 4px rgba(0,0,0,0.5), 0 0 80px rgba(198,40,40,0.2); }
  50% { text-shadow: 0 0 40px rgba(198,149,43,0.6), 0 2px 4px rgba(0,0,0,0.5), 0 0 100px rgba(198,40,40,0.3); }
}

.juego-banner__desc {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.2rem;
  line-height: 1.6;
}

.juego-banner__desc strong {
  color: #F5D576;
}

.juego-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 5px;
  color: #1A1A1A;
  background: linear-gradient(180deg, #F5D576, #C6952B);
  padding: 1.1rem 3rem;
  margin: 0;
  border: 0 none;
  border-style: none;
  outline: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 30px rgba(198,149,43,0.4);
}

.juego-banner__btn:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 40px rgba(198,149,43,0.55);
}

.juego-banner__btn:active {
  transform: scale(0.96);
}

/* Banner — tablet */
@media (max-width: 768px) {
  .juego-banner {
    padding: 2.5rem 1.2rem;
    min-height: 280px;
  }

  .juego-banner__marquesina {
    padding: 2.5rem 1.5rem;
  }

  .juego-banner__titulo {
    font-size: 3.5rem;
    letter-spacing: 4px;
  }

  .juego-banner__desc {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
  }

  .juego-banner__btn {
    font-size: 1.05rem;
    padding: 0.95rem 2.4rem;
    letter-spacing: 3px;
  }
}

/* Banner — mobile pequeño */
@media (max-width: 480px) {
  .juego-banner {
    padding: 2rem 1rem;
    min-height: 240px;
  }

  .juego-banner__marquesina {
    padding: 2rem 1.2rem;
  }

  .juego-banner__titulo {
    font-size: 2.8rem;
    letter-spacing: 3px;
  }

  .juego-banner__etiqueta {
    font-size: 0.65rem;
    letter-spacing: 3px;
    margin-bottom: 0.6rem;
  }

  .juego-banner__desc {
    font-size: 0.82rem;
    margin-bottom: 1.2rem;
  }

  .juego-banner__btn {
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    letter-spacing: 2px;
  }
}

/* ========== JUEGO — LLENA EL TANQUE ========== */
.juego {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(165deg, #0d0000 0%, #060606 40%, #0a0406 100%);
  overflow: hidden;
}

.juego::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 50% 30%, rgba(198,40,40,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.juego__inner {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 5%;
  text-align: center;
}

.juego__titulo {
  font-family: var(--fuente-display);
  font-size: 2.8rem;
  color: var(--color-blanco);
  letter-spacing: 4px;
  margin-bottom: 0.4rem;
}

.juego__sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.2rem;
}

/* Reglas colapsables */
.juego__reglas {
  margin-bottom: 1.5rem;
  text-align: center;
}

.juego__reglas-toggle {
  background: transparent;
  border: 1px solid var(--color-secundario);
  color: var(--color-secundario);
  font-family: var(--fuente-body);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.juego__reglas-toggle:hover {
  background: var(--color-secundario);
  color: var(--color-oscuro);
}

.juego__reglas-contenido {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.juego__reglas--abierto .juego__reglas-contenido {
  max-height: 320px;
  opacity: 1;
}

.juego__reglas-contenido ol {
  text-align: left;
  max-width: 380px;
  margin: 1rem auto 0.5rem;
  padding-left: 1.2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.juego__reglas-contenido ol strong {
  color: var(--color-secundario-claro);
}

.juego__reglas-nota {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

/* Puerta de folio */
.juego__folio-gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.juego__folio-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.juego__folio-input {
  background: linear-gradient(180deg, #0e0e0e, #161616);
  border: 1px solid #333;
  border-radius: 12px;
  color: #fff;
  font-family: var(--fuente-body);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  max-width: 300px;
  width: 100%;
  padding: 0.85rem 1.2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.juego__folio-input--litros {
  text-transform: none;
  letter-spacing: 1px;
  max-width: 200px;
}

/* Quitar flechas del input number */
.juego__folio-input--litros::-webkit-outer-spin-button,
.juego__folio-input--litros::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.juego__folio-input--litros[type=number] {
  -moz-appearance: textfield;
}

.juego__folio-input:focus {
  outline: none;
  border-color: var(--color-secundario);
  box-shadow: 0 0 12px rgba(198,149,43,0.25);
}

.juego__folio-input--error {
  border-color: var(--color-primario) !important;
  box-shadow: 0 0 12px rgba(198,40,40,0.3) !important;
}

.juego__folio-ayuda {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
}

.juego__folio-error {
  font-size: 0.72rem;
  color: #EF5350;
  display: none;
  max-width: 300px;
  text-align: center;
}

.juego__folio-btn {
  background: linear-gradient(180deg, var(--color-primario), var(--color-primario-oscuro));
  color: #fff;
  border: none;
  font-family: var(--fuente-display);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.8rem 2.2rem;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s, transform 0.15s;
  box-shadow: 0 4px 15px rgba(198,40,40,0.25);
}

.juego__folio-btn:hover {
  background: var(--color-primario-oscuro);
}

.juego__folio-btn:active {
  transform: scale(0.97);
}

/* Urgencia en cupón */
.juego__cupon-hoy {
  color: #EF5350;
  font-weight: 700;
  font-size: 0.72rem;
  animation: pulsoHoy 2s ease-in-out infinite;
}

@keyframes pulsoHoy {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.juego__cupon-folio {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.3rem;
  letter-spacing: 1px;
}

/* Intentos */
.juego__intentos {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.juego__intento {
  font-size: 1.3rem;
  transition: opacity 0.4s, filter 0.4s;
}

.juego__intento--usado {
  opacity: 0.15;
  filter: grayscale(1);
}

/* Arena */
.juego__arena {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

/* Meta parpadeante */
.juego__meta-display {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.juego__meta-label {
  font-family: var(--fuente-display);
  font-size: 0.85rem;
  color: var(--color-primario-claro);
  letter-spacing: 3px;
}

.juego__meta-num {
  font-family: var(--fuente-display);
  font-size: 2.4rem;
  color: var(--color-primario-claro);
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(239,83,80,0.5);
  animation: parpadeoMeta 1.5s ease-in-out infinite;
}

@keyframes parpadeoMeta {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.juego__meta-unit {
  font-family: var(--fuente-display);
  font-size: 1.1rem;
  color: var(--color-primario-claro);
}

/* Surtidor: tanque + LCD lado a lado */
.juego__surtidor {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Tanque vertical */
.juego__tanque {
  position: relative;
  width: 52px;
  height: 260px;
  background: linear-gradient(180deg, #0a0a0a, #141414);
  border: 2px solid #333;
  border-radius: 12px;
  overflow: visible;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.5), 0 0 20px rgba(198,149,43,0.05);
}

.juego__nivel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: linear-gradient(0deg, var(--color-secundario-oscuro), var(--color-secundario) 50%, var(--color-secundario-claro));
  border-radius: 0 0 6px 6px;
  box-shadow: 0 -4px 20px rgba(245,213,118,0.15);
}

/* Linea de la meta sobre el tanque */
.juego__meta-linea {
  position: absolute;
  left: -6px;
  right: -6px;
  height: 2px;
  background: var(--color-primario-claro);
  box-shadow: 0 0 8px rgba(239,83,80,0.6);
  z-index: 2;
  bottom: 50%;
}

.juego__meta-linea span {
  position: absolute;
  right: calc(100% + 6px);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--fuente-display);
  font-size: 0.5rem;
  color: var(--color-primario-claro);
  letter-spacing: 2px;
  white-space: nowrap;
}

/* Marcas de escala */
.juego__marcas {
  position: absolute;
  top: 0;
  left: calc(100% + 5px);
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.juego__marcas span {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.2);
  font-family: var(--fuente-display);
  letter-spacing: 1px;
  line-height: 1;
}

.juego__marcas span:first-child { transform: translateY(4px); }
.juego__marcas span:last-child { transform: translateY(-4px); }

/* LCD Display */
.juego__lcd {
  background: linear-gradient(180deg, #0a0a0a, #111);
  border: 2px solid #2a2a2a;
  border-radius: 16px;
  padding: 1.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: inset 0 1px 6px rgba(0,0,0,0.6), 0 0 25px rgba(245,213,118,0.04);
}

.juego__lcd-num {
  font-family: var(--fuente-display);
  font-size: 3.5rem;
  color: var(--color-secundario-claro);
  letter-spacing: 3px;
  line-height: 1;
  text-shadow:
    0 0 8px rgba(245,213,118,0.5),
    0 0 22px rgba(245,213,118,0.25);
}

.juego__lcd-u {
  font-family: var(--fuente-display);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 4px;
  margin-top: 0.25rem;
}

/* Boton PARAR enorme */
.juego__btn-parar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid var(--color-secundario);
  background: linear-gradient(180deg, var(--color-primario), var(--color-primario-oscuro));
  color: var(--color-blanco);
  font-family: var(--fuente-display);
  font-size: 1.2rem;
  letter-spacing: 3px;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.12s ease;
  box-shadow: 0 4px 25px rgba(198,40,40,0.3);
}

.juego__btn-parar:active {
  transform: scale(0.88);
}

.juego__btn-parar--activo {
  animation: pulsoParar 0.9s ease-in-out infinite;
}

@keyframes pulsoParar {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(198,40,40,0.5); }
  50% { transform: scale(1.07); box-shadow: 0 0 30px 6px rgba(198,40,40,0.15); }
}

.juego__btn-parar:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  animation: none;
}

/* ---- Resultado ---- */
.juego__resultado {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
}

.juego__res-icono { font-size: 3rem; margin-bottom: 0.4rem; }

.juego__res-titulo {
  font-family: var(--fuente-display);
  font-size: 1.8rem;
  color: var(--color-secundario-claro);
  letter-spacing: 3px;
  margin-bottom: 0.4rem;
}

.juego__res-texto {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.juego__res-texto strong { color: var(--color-blanco); }

/* Cupon */
.juego__cupon {
  background: linear-gradient(180deg, #141414, #0d0d0d);
  border: 2px solid var(--color-secundario);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 310px;
  box-shadow: 0 0 30px rgba(198,149,43,0.1);
}

.juego__cupon-titulo {
  font-family: var(--fuente-display);
  font-size: 1.5rem;
  color: var(--color-secundario-claro);
  letter-spacing: 2px;
  margin-bottom: 0.15rem;
}

.juego__cupon-marca {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
}

.juego__cupon-codigo {
  font-family: monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-secundario-claro);
  background: #1a1a1a;
  border: 1px solid rgba(198,149,43,0.3);
  border-radius: 8px;
  padding: 0.45rem 0.9rem;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.juego__cupon-detalle {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.juego__cupon-qr {
  display: inline-grid;
  grid-template-columns: repeat(7, 5px);
  gap: 1px;
  margin-top: 0.5rem;
}

.juego__cupon-qr span {
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 1px;
}

.juego__cupon-qr span.ll { background: var(--color-secundario); }

/* Botones de accion */
.juego__res-acciones {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.juego__res-btn {
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--color-blanco);
  font-family: var(--fuente-body);
  font-size: 0.72rem;
  cursor: pointer;
  transition: background 0.3s;
}

.juego__res-btn:hover { background: rgba(255,255,255,0.1); }

.juego__res-btn--wa {
  background: rgba(37,211,102,0.12);
  border-color: rgba(37,211,102,0.25);
  color: #25d366;
}

.juego__res-btn--wa:hover { background: rgba(37,211,102,0.22); }

.juego__res-btn--reiniciar {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
  width: 100%;
  max-width: 200px;
}

/* Form sorteo */
.juego__form-sorteo {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
  max-width: 260px;
  margin-bottom: 0.8rem;
}

.juego__form-sorteo input {
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #2a2a2a;
  background: #111;
  color: var(--color-blanco);
  font-family: var(--fuente-body);
  font-size: 0.82rem;
}

.juego__form-sorteo button {
  padding: 0.55rem;
  border-radius: 8px;
  border: none;
  background: var(--color-primario);
  color: var(--color-blanco);
  font-family: var(--fuente-display);
  font-size: 0.85rem;
  letter-spacing: 2px;
  cursor: pointer;
}

/* Confeti */
.juego__confeti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 20;
}

.confeti-pieza {
  position: absolute;
  top: -10px;
  border-radius: 2px;
  opacity: 0;
  animation: confCaer var(--dur) ease-in forwards;
  animation-delay: var(--delay);
}

@keyframes confCaer {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(650px) rotate(var(--rot, 720deg)); opacity: 0; }
}

/* Sacudir tanque al perder */
@keyframes sacudir {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.juego__tanque--sacudir { animation: sacudir 0.5s ease; }

/* ========== NOSOTROS ========== */
.nosotros {
  padding: 6rem 0;
  background-color: var(--color-blanco);
}

.nosotros__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.nosotros__parrafo {
  font-size: 1.05rem;
  color: var(--color-texto-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.nosotros__parrafo strong {
  color: var(--color-oscuro);
}

/* Galería de imágenes nosotros */
.nosotros__galeria {
  position: relative;
  width: 100%;
}

.nosotros__imagen-principal {
  width: 100%;
  border-radius: var(--radio-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--sombra-lg);
}

.nosotros__imagen-lider {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-blanco);
  border-radius: var(--radio-lg);
  padding: 0.4rem;
  box-shadow: var(--sombra-lg);
  text-align: center;
}

.nosotros__foto-lider {
  width: 120px;
  height: 140px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radio-md);
}

.nosotros__lider-nombre {
  display: block;
  font-family: var(--fuente-display);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: var(--color-oscuro);
  padding: 0.35rem 0.5rem 0.2rem;
}

/* Contadores */
.nosotros__contadores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem;
  background: var(--color-fondo-alt);
  border-radius: var(--radio-xl);
  border: 1px solid var(--color-borde);
}

.contador {
  text-align: center;
  position: relative;
}

.contador::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: var(--color-borde);
}

.contador:last-child::after { display: none; }

.contador__numero {
  font-family: var(--fuente-display);
  font-size: 3.2rem;
  color: var(--color-primario);
  line-height: 1;
}

.contador__simbolo {
  font-family: var(--fuente-display);
  font-size: 2rem;
  color: var(--color-secundario);
}

.contador__label {
  font-size: 0.88rem;
  color: var(--color-texto-light);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ========== ESTACIONES ========== */
.estaciones {
  padding: 6rem 0;
  background-color: var(--color-fondo);
}

.estaciones__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.estacion-card {
  background-color: var(--color-blanco);
  border: 1px solid var(--color-borde);
  border-radius: var(--radio-lg);
  padding: 2rem;
  transition: all var(--transicion);
}

.estacion-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-lg);
  border-color: var(--color-primario);
}

.estacion-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.estacion-card__indicador {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #22C55E;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
  animation: pulso 2s ease-in-out infinite;
}

@keyframes pulso {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.estacion-card__nombre {
  font-family: var(--fuente-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--color-oscuro);
}

.estacion-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.estacion-card__dato {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-texto-light);
}

.estacion-card__dato svg {
  stroke: var(--color-primario);
  flex-shrink: 0;
}

.estacion-card__servicios {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.estacion-card__tag {
  padding: 4px 14px;
  border-radius: 30px;
  background-color: var(--color-fondo-alt);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-texto-light);
  border: 1px solid var(--color-borde);
}

/* Colored left-border por estación */
.estacion-card--1 { border-left: 4px solid var(--color-primario); }
.estacion-card--2 { border-left: 4px solid var(--color-secundario); }
.estacion-card--3 { border-left: 4px solid #E65100; }

/* Dots de paginación — ocultos en desktop */
.estaciones__dots {
  display: none;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.estaciones__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-borde);
  transition: all 0.3s ease;
  cursor: pointer;
}

.estaciones__dot--activo {
  background: var(--color-secundario);
  box-shadow: 0 0 8px rgba(198,149,43,0.4);
  animation: pulsoDot 2s ease-in-out infinite;
}

@keyframes pulsoDot {
  0%, 100% { box-shadow: 0 0 8px rgba(198,149,43,0.4); transform: scale(1); }
  50% { box-shadow: 0 0 16px rgba(198,149,43,0.6); transform: scale(1.2); }
}

/* Dots reutilizables — responsabilidad */
.responsabilidad__dots {
  display: none;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.responsabilidad__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-borde);
  transition: all 0.3s ease;
  cursor: pointer;
}

.responsabilidad__dot--activo {
  background: var(--color-secundario);
  box-shadow: 0 0 8px rgba(198,149,43,0.4);
  animation: pulsoDot 2s ease-in-out infinite;
}

/* ========== RESPONSABILIDAD SOCIAL ========== */
.responsabilidad {
  padding: 6rem 0;
  background-color: var(--color-blanco);
}

/* Grid de cards responsabilidad */
.responsabilidad__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.resp-card {
  background-color: var(--color-fondo);
  border-radius: var(--radio-lg);
  overflow: hidden;
  transition: all var(--transicion);
  border: 1px solid var(--color-borde);
}

.resp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-lg);
}

.resp-card--destacada {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.resp-card__imagen {
  width: 100%;
  overflow: hidden;
}

.resp-card__imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 16/10;
  transition: transform var(--transicion-lenta);
}

.resp-card:hover .resp-card__imagen img {
  transform: scale(1.05);
}

.resp-card--destacada .resp-card__imagen img {
  aspect-ratio: 4/3;
  min-height: 100%;
}

.resp-card__imagen--icono {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 180px;
  background: linear-gradient(135deg, rgba(198,149,43,0.08), rgba(198,149,43,0.18));
  gap: 0.75rem;
}

.resp-card__icono-label {
  font-family: var(--fuente-display);
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--color-secundario);
}

.resp-card__contenido {
  padding: 1.5rem;
}

.resp-card__titulo {
  font-family: var(--fuente-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--color-oscuro);
  margin-bottom: 0.5rem;
}

.resp-card__texto {
  font-size: 0.92rem;
  color: var(--color-texto-light);
  line-height: 1.7;
}

/* ========== PROMOCIONES ========== */
.promociones {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.promociones__fondo {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-oscuro) 0%, #1a0000 30%, var(--color-primario-oscuro) 60%, var(--color-oscuro) 100%);
  background-size: 200% 200%;
  animation: gradientePromo 10s ease infinite;
}

@keyframes gradientePromo {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.promociones__fondo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(198,149,43,0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(198,40,40,0.15) 0%, transparent 40%);
}

.promociones__contenido {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.promociones__badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
  background: rgba(198,149,43,0.15);
  border: 1px solid rgba(198,149,43,0.3);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secundario-claro);
  margin-bottom: 1.5rem;
}

.promociones__titulo {
  font-family: var(--fuente-display);
  font-size: 4rem;
  letter-spacing: 3px;
  color: var(--color-blanco);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.promociones__premio {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 1.5rem;
}

.promociones__moneda {
  font-family: var(--fuente-display);
  font-size: 2.5rem;
  color: var(--color-secundario-claro);
}

.promociones__monto {
  font-family: var(--fuente-display);
  font-size: 5.5rem;
  color: var(--color-secundario-claro);
  line-height: 1;
  text-shadow: 0 0 40px rgba(245,213,118,0.3);
}

.promociones__moneda-label {
  font-family: var(--fuente-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-secundario);
  margin-left: 4px;
}

.promociones__descripcion {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 450px;
}

.promo-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radio-xl);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  transition: all var(--transicion);
}

.promo-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}

.promo-card__icono { margin-bottom: 1.25rem; }
.promo-card__icono svg { stroke: var(--color-secundario-claro); }

.promo-card__titulo {
  font-family: var(--fuente-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--color-blanco);
  margin-bottom: 0.75rem;
}

.promo-card__texto {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.promo-card__badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(198,149,43,0.15);
  border: 1px solid rgba(198,149,43,0.25);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-secundario-claro);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== CONTACTO ========== */
.contacto {
  padding: 6rem 0;
  background-color: var(--color-fondo);
}

.contacto__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Formulario con floating labels */
.formulario {
  background-color: var(--color-blanco);
  border-radius: var(--radio-xl);
  padding: 2.5rem;
  box-shadow: var(--sombra-md);
  border: 1px solid var(--color-borde);
}

.formulario__grupo {
  position: relative;
  margin-bottom: 1.5rem;
}

.formulario__input {
  width: 100%;
  padding: 16px 18px 8px;
  border: 2px solid var(--color-borde);
  border-radius: var(--radio-md);
  font-family: var(--fuente-body);
  font-size: 0.95rem;
  color: var(--color-texto);
  transition: all var(--transicion);
  outline: none;
  background: transparent;
}

.formulario__input:focus {
  border-color: var(--color-primario);
  box-shadow: 0 0 0 4px rgba(198,40,40,0.08);
}

.formulario__label {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--fuente-body);
  font-size: 0.92rem;
  color: var(--color-texto-light);
  transition: all var(--transicion-rapida);
  pointer-events: none;
  background: var(--color-blanco);
  padding: 0 4px;
}

.formulario__textarea ~ .formulario__label {
  top: 20px;
  transform: none;
}

.formulario__input:focus ~ .formulario__label,
.formulario__input:not(:placeholder-shown) ~ .formulario__label {
  top: 0;
  transform: translateY(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primario);
}

.formulario__textarea:focus ~ .formulario__label,
.formulario__textarea:not(:placeholder-shown) ~ .formulario__label {
  top: 0;
  transform: translateY(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primario);
}

.formulario__textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 20px;
}

/* Info de contacto */
.contacto__info { padding: 2rem 0; }

.contacto__info-titulo {
  font-family: var(--fuente-display);
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: var(--color-oscuro);
  margin-bottom: 0.75rem;
}

.contacto__info-texto {
  font-size: 1rem;
  color: var(--color-texto-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contacto__datos {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contacto__dato {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contacto__dato-icono {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-fondo-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contacto__dato-icono svg { stroke: var(--color-primario); }

.contacto__dato-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-texto-light);
  margin-bottom: 2px;
}

.contacto__dato-valor {
  display: block;
  font-size: 0.95rem;
  color: var(--color-oscuro);
  font-weight: 500;
}

.contacto__redes {
  border-top: 1px solid var(--color-borde);
  padding-top: 1.5rem;
}

.contacto__redes-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-texto-light);
  margin-bottom: 1rem;
}

.contacto__redes-iconos {
  display: flex;
  gap: 0.75rem;
}

.contacto__red {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-fondo-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transicion);
  color: var(--color-texto-light);
}

.contacto__red:hover {
  background: var(--color-primario);
  color: var(--color-blanco);
  transform: translateY(-3px);
  box-shadow: var(--sombra-roja);
}

.contacto__red:hover svg {
  stroke: var(--color-blanco);
  fill: var(--color-blanco);
}

/* ========== FOOTER ========== */
.footer {
  background-color: var(--color-oscuro);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  height: 45px;
  width: auto;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer__slogan {
  font-family: var(--fuente-display);
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--color-secundario-claro);
  margin-bottom: 0.5rem;
}

.footer__descripcion {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}

.footer__titulo {
  font-family: var(--fuente-display);
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--color-blanco);
  margin-bottom: 1.25rem;
}

.footer__lista {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__enlace {
  font-size: 0.88rem;
  transition: all var(--transicion);
  position: relative;
  display: inline-block;
}

.footer__enlace::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-secundario-claro);
  transition: width var(--transicion);
}

.footer__enlace:hover {
  color: var(--color-secundario-claro);
}

.footer__enlace:hover::after {
  width: 100%;
}

.footer__contacto-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.footer__contacto-item svg {
  stroke: var(--color-secundario);
  flex-shrink: 0;
}

.footer__redes {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer__red {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transicion);
}

.footer__red:hover {
  background: var(--color-secundario);
  color: var(--color-oscuro);
  transform: translateY(-3px);
}

.footer__red svg { fill: currentColor; }

.footer__legal {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ========== PÁGINAS INTERIORES ========== */
.pagina-hero {
  background: var(--color-oscuro);
  padding: 8rem 0 4rem;
  text-align: center;
}

.pagina-hero__descripcion {
  max-width: 600px;
  margin: 1rem auto 0;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
}

.seccion-pagina {
  padding: 5rem 0;
}

.seccion-pagina--alterna {
  background: var(--color-fondo);
}

.seccion-pagina--cta {
  background: var(--color-oscuro);
  padding: 4rem 0;
}

/* Detalle de servicio */
.servicio-detalle {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.servicio-detalle__icono {
  margin-bottom: 1.5rem;
}

.servicio-detalle__titulo {
  font-family: var(--fuente-display);
  font-size: 2.5rem;
  color: var(--color-oscuro);
  margin-bottom: 0.3rem;
}

.servicio-detalle__slogan {
  color: var(--color-primario);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.servicio-detalle__texto {
  color: var(--color-texto);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.servicio-detalle__lista {
  display: grid;
  gap: 1.5rem;
  text-align: left;
}

.servicio-item {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid var(--color-primario);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.servicio-item h3 {
  font-family: var(--fuente-display);
  font-size: 1.2rem;
  color: var(--color-oscuro);
  margin-bottom: 0.3rem;
}

.servicio-item p {
  color: var(--color-texto);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Grid de servicios */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.servicio-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.servicio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.servicio-card svg {
  margin-bottom: 1rem;
}

.servicio-card h3 {
  font-family: var(--fuente-display);
  font-size: 1.1rem;
  color: var(--color-oscuro);
  margin-bottom: 0.5rem;
}

.servicio-card p {
  color: var(--color-texto);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Páginas interiores — cards genéricas */
.pagina-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.pagina-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.pagina-card h3 {
  font-family: var(--fuente-display);
  font-size: 1.15rem;
  color: var(--color-oscuro);
  margin-bottom: 0.5rem;
}

.pagina-card p {
  color: var(--color-texto);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Páginas interiores responsive */
@media (max-width: 768px) {
  .pagina-hero {
    padding: 7rem 0 3rem;
  }

  .servicios-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .servicio-detalle__titulo {
    font-size: 2rem;
  }

  .seccion-pagina {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .pagina-hero {
    padding: 6rem 0 2rem;
  }

  .pagina-hero__descripcion {
    font-size: 0.88rem;
  }

  .servicio-detalle__titulo {
    font-size: 1.7rem;
  }
}

/* ========== LEÓN OVERLAY — Camina sobre el hero ========== */
.hero__leon-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  filter: url(#filtro-leon);
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.8s ease-out;
}

/* Desktop: león camina desde la derecha */
.hero__leon-overlay--desktop {
  width: 105%;
  height: 105%;
  object-fit: contain;
  object-position: right bottom;
}

/* Móvil: león estático pantalla completa — oculto en desktop */
.hero__leon-overlay--mobile {
  display: none;
}

.hero__leon-overlay--oculto {
  opacity: 0;
}

.hero__leon-overlay--removido {
  display: none;
}

/* León overlay — móvil: grande, protagonista del hero */
@media (max-width: 768px) {
  .hero__leon-overlay--desktop {
    display: none;
  }

  .hero__leon-overlay--mobile {
    display: block;
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 4;
    pointer-events: none;
  }

  /* Canvas chroma key — JS ya maneja la transparencia, no necesita filtro SVG ni blend mode */
  .hero__leon-canvas {
    filter: none;
    mix-blend-mode: normal;
  }
}

/* ========== ANIMACIONES SCROLL ========== */
[data-animar] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animar].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay escalonado para hijos */
[data-animar].visible .estacion-card,
[data-animar].visible .resp-card {
  opacity: 0;
  transform: translateY(20px);
  animation: aparecerHijo 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

[data-animar].visible .estacion-card:nth-child(1),
[data-animar].visible .resp-card:nth-child(1) { animation-delay: 0.1s; }

[data-animar].visible .estacion-card:nth-child(2),
[data-animar].visible .resp-card:nth-child(2) { animation-delay: 0.2s; }

[data-animar].visible .estacion-card:nth-child(3),
[data-animar].visible .resp-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes aparecerHijo {
  to { opacity: 1; transform: translateY(0); }
}

/* ========== RESPONSIVE — TABLET ========== */
@media (max-width: 1024px) {
  .hero__titulo {
    font-size: 5rem;
  }

  .servicios__bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    max-height: none;
  }

  .bento--hero {
    grid-column: span 2;
    grid-row: span 1;
  }

  .bento--hero .bento__stat-num {
    font-size: 2.5rem;
  }

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

  .contador:nth-child(2)::after { display: none; }

  .resp-card--destacada {
    grid-template-columns: 1fr 1fr;
  }

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

  .estaciones__grid .estacion-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

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

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

  .precios__lema {
    font-size: 2rem;
  }

  .tablero-led__digitos {
    font-size: 2.2rem;
  }

  /* Juego tablet */
  .juego__tanque {
    height: 220px;
  }

  .juego__lcd-num {
    font-size: 3rem;
  }

  .juego__btn-parar {
    width: 100px;
    height: 100px;
  }
}

/* ========== RESPONSIVE — MOBILE ========== */
@media (max-width: 768px) {
  .seccion-header__titulo {
    font-size: 2.4rem;
  }

  /* Header mobile */
  .header__hamburguesa {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background-color: var(--color-blanco);
    flex-direction: column;
    justify-content: center;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right var(--transicion);
    z-index: 999;
  }

  .header__nav--abierto {
    right: 0;
  }

  .header__menu {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .header__enlace {
    font-size: 1.1rem;
    color: var(--color-oscuro);
  }

  /* Hero mobile — león grande de fondo, texto encima */
  .hero {
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.85) 0%,
        rgba(142, 0, 0, 0.5) 30%,
        rgba(0, 0, 0, 0.15) 55%,
        rgba(26, 26, 26, 0.7) 85%,
        rgba(26, 26, 26, 0.95) 100%
      );
    z-index: 5;
  }

  .hero__contenido {
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    z-index: 6;
  }

  .hero__etiqueta {
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
  }

  .hero__titulo {
    font-size: 3.8rem;
    line-height: 0.9;
    margin-bottom: 0.5rem;
  }

  .hero__subtitulo {
    font-size: 1.6rem;
    letter-spacing: 8px;
    margin-bottom: 1rem;
  }

  .hero__descripcion {
    text-align: center;
    font-size: 0.9rem;
    max-width: 300px;
    margin-bottom: 1.5rem;
  }

  .hero__acciones {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .hero__scroll-indicador {
    bottom: 1rem;
    z-index: 7;
  }

  .hero__scroll-mouse {
    width: 22px;
    height: 34px;
  }

  .hero__scroll-texto {
    font-size: 0.6rem;
  }

  /* Grids a 1 columna */
  .servicios {
    min-height: auto;
    padding: 3.5rem 0;
  }

  .servicios__bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    max-height: none;
    gap: 0.75rem;
  }

  .bento--hero {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento--hero .bento__contenido {
    padding: 1.5rem;
  }

  .bento--hero .bento__titulo {
    font-size: 1.6rem;
  }

  .bento--hero .bento__stat-num {
    font-size: 2.2rem;
  }

  /* Watermarks más pequeñas en mobile */
  .bento__watermark {
    width: 40%;
    opacity: 0.8;
  }

  .bento__watermark--sm {
    width: 45%;
  }

  /* Cards compactas */
  .bento--oscuro .bento__contenido,
  .bento--dorado .bento__contenido {
    padding: 1rem 1.25rem;
  }

  /* Carousel horizontal con scroll-snap */
  .estaciones__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 0 6%;
    scroll-padding-left: 6%;
  }

  .estaciones__grid::-webkit-scrollbar {
    display: none;
  }

  .estaciones__grid .estacion-card {
    flex: 0 0 88%;
    scroll-snap-align: start;
    margin-right: 12px;
  }

  .estaciones__grid .estacion-card:last-child {
    max-width: none;
    margin-right: 6%;
  }

  .estaciones__dots {
    display: flex;
  }

  .nosotros__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nosotros__texto {
    text-align: center;
  }

  .nosotros__texto .seccion-header__titulo--izq {
    text-align: center;
  }

  .nosotros__texto .seccion-header__linea--izq {
    margin: 0 auto;
  }

  .nosotros__contadores {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 1.5rem;
  }

  .contador__numero { font-size: 2.4rem; }
  .contador::after { display: none; }

  /* Responsabilidad — carousel horizontal */
  .responsabilidad__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 0 6%;
    scroll-padding-left: 6%;
  }

  .responsabilidad__grid::-webkit-scrollbar {
    display: none;
  }

  .resp-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    margin-right: 12px;
  }

  .resp-card--destacada {
    grid-template-columns: 1fr;
    display: block;
  }

  .resp-card:last-child {
    margin-right: 6%;
  }

  .resp-card__imagen img {
    aspect-ratio: 3/2;
  }

  .resp-card--destacada .resp-card__imagen img {
    aspect-ratio: 3/2;
  }

  .resp-card:hover {
    transform: none;
  }

  .responsabilidad__dots {
    display: flex;
  }

  .nosotros__imagen-lider {
    right: 0.5rem;
    bottom: -1rem;
  }

  .nosotros__foto-lider {
    width: 90px;
    height: 105px;
  }

  .promociones__titulo { font-size: 2.5rem; }
  .promociones__monto { font-size: 4rem; }

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

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__logo { margin: 0 auto 1rem; }
  .footer__redes { justify-content: center; }


  /* Juego mobile */
  .juego {
    padding: 2.5rem 0;
  }

  .juego__titulo {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .juego__sub {
    font-size: 0.78rem;
    margin-bottom: 0.8rem;
  }

  .juego__folio-input {
    max-width: 260px;
    font-size: 0.85rem;
  }

  .juego__reglas-contenido ol {
    font-size: 0.73rem;
  }

  .juego__meta-num {
    font-size: 2rem;
  }

  .juego__surtidor {
    gap: 1.2rem;
  }

  .juego__tanque {
    width: 42px;
    height: 180px;
  }

  .juego__lcd {
    padding: 0.8rem 1rem;
  }

  .juego__lcd-num {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .juego__btn-parar {
    width: 90px;
    height: 90px;
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .juego__res-titulo {
    font-size: 1.4rem;
  }

  .juego__cupon {
    padding: 1rem;
    max-width: 280px;
  }

  .juego__res-acciones {
    flex-wrap: wrap;
  }

  /* Precios mobile */
  .precios {
    padding: 3.5rem 0 3rem;
  }

  .precios__lema {
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
  }

  .tablero-led__digitos {
    font-size: 2rem;
  }

  .tablero-led__nombre {
    font-size: 0.85rem;
    letter-spacing: 3px;
  }

  .tablero-led__fila {
    padding: 0.75rem 1rem;
  }

  .tablero-led__poste {
    height: 30px;
  }

  .precios__sello-anillo {
    width: 70px;
    height: 70px;
  }

  .precios__sello-anillo svg {
    width: 18px;
    height: 18px;
  }

  .precios__sello-anillo span {
    font-size: 0.42rem;
  }
}

/* ========== RESPONSIVE — MOBILE PEQUEÑO ========== */
@media (max-width: 480px) {
  .hero__contenido {
    padding-top: 15vh;
  }

  .hero__etiqueta {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }

  .hero__titulo {
    font-size: 3rem;
    line-height: 0.88;
  }

  .hero__subtitulo {
    font-size: 1.3rem;
    letter-spacing: 5px;
  }

  .hero__descripcion {
    font-size: 0.82rem;
    max-width: 260px;
  }

  .promociones__titulo { font-size: 2rem; }
  .promociones__monto { font-size: 3rem; }

  /* Juego mobile pequeño */
  .juego {
    padding: 2rem 0;
  }

  .juego__titulo {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .juego__sub {
    font-size: 0.72rem;
  }

  .juego__folio-input {
    max-width: 260px;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }

  .juego__folio-btn {
    padding: 0.7rem 1.8rem;
    font-size: 0.8rem;
  }

  .juego__reglas-contenido ol {
    font-size: 0.7rem;
  }

  .juego__meta-num {
    font-size: 1.8rem;
  }

  .juego__meta-label {
    font-size: 0.75rem;
  }

  .juego__arena {
    gap: 1rem;
  }

  .juego__surtidor {
    gap: 1.2rem;
  }

  .juego__tanque {
    width: 40px;
    height: 160px;
  }

  .juego__lcd {
    padding: 0.8rem 1.2rem;
  }

  .juego__lcd-num {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .juego__btn-parar {
    width: 85px;
    height: 85px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border-width: 2px;
  }

  .juego__res-titulo {
    font-size: 1.3rem;
  }

  .juego__cupon {
    padding: 1rem;
    max-width: 280px;
  }

  .juego__cupon-codigo {
    font-size: 1rem;
    padding: 0.5rem 0.8rem;
    letter-spacing: 2px;
    word-break: break-all;
  }

  .juego__res-btn {
    font-size: 0.72rem;
    padding: 0.5rem 0.9rem;
  }
}

/* ========== GOOGLE MAPS EN CONTACTO ========== */
.contacto__mapa {
  margin-top: 3rem;
}

.contacto__mapa iframe {
  display: block;
  box-shadow: var(--sombra-md);
}

/* ========== REDES SOCIALES FLOTANTES ========== */
.redes-flotantes {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 997;
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  align-items: center;
}

.redes-flotantes__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--color-oscuro);
  color: var(--color-blanco);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sombra-md);
  transition: all var(--transicion);
}

.redes-flotantes__toggle:hover {
  transform: scale(1.1);
}

.redes-flotantes__toggle--activo {
  transform: rotate(45deg);
}

.redes-flotantes__lista {
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
}

.redes-flotantes__boton {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blanco);
  transition: all var(--transicion);
  box-shadow: var(--sombra-md);
}

.redes-flotantes__boton:hover {
  transform: scale(1.12);
  box-shadow: var(--sombra-lg);
}

.redes-flotantes__boton--fb {
  background-color: #1877F2;
}

.redes-flotantes__boton--fb:hover {
  background-color: #3b93ff;
}

.redes-flotantes__boton--ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.redes-flotantes__boton--ig:hover {
  background: linear-gradient(45deg, #f5a623, #ec7c50, #e04060, #d63a80, #c830a0);
}

.redes-flotantes__boton--wa {
  background-color: #25D366;
}

.redes-flotantes__boton--wa:hover {
  background-color: #4ae07e;
}

.redes-flotantes__tooltip {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-oscuro);
  color: var(--color-blanco);
  font-family: var(--fuente-body);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transicion-rapida);
}

.redes-flotantes__boton:hover .redes-flotantes__tooltip {
  opacity: 1;
}

/* ========== CHATBOT ========== */
.chatbot {
  position: fixed;
  left: 20px;
  bottom: 24px;
  z-index: 998;
}

.chatbot__boton {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--color-secundario);
  background: #FFF;
  color: var(--color-blanco);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--sombra-roja);
  transition: all var(--transicion);
  animation: chatPulso 2.5s ease-in-out infinite;
  position: relative;
}

.chatbot__boton-leon {
  width: 110%;
  height: 110%;
  object-fit: contain;
  animation: leonBalanceo 2s ease-in-out infinite;
}

@keyframes leonBalanceo {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.05) rotate(3deg); }
  75% { transform: scale(1.05) rotate(-3deg); }
}

@keyframes chatPulso {
  0%, 100% { box-shadow: 0 4px 20px rgba(198,40,40,0.3); }
  50% { box-shadow: 0 4px 30px rgba(198,40,40,0.5); }
}

.chatbot__boton:hover {
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 8px 30px rgba(198,40,40,0.4);
}

.chatbot__boton-cerrar {
  display: none;
}

.chatbot--abierto .chatbot__boton-icono {
  display: none;
}

.chatbot--abierto .chatbot__boton-cerrar {
  display: block;
}

.chatbot--abierto .chatbot__boton {
  animation: none;
  background: var(--color-oscuro);
  border-color: var(--color-oscuro);
  box-shadow: var(--sombra-md);
}

/* Panel de chat */
.chatbot__panel {
  position: absolute;
  bottom: 72px;
  left: 0;
  width: 360px;
  max-height: 500px;
  background: var(--color-blanco);
  border-radius: var(--radio-xl);
  box-shadow: var(--sombra-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.8) translateY(20px);
  transform-origin: bottom left;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chatbot--abierto .chatbot__panel {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
}

.chatbot__header {
  background: linear-gradient(135deg, var(--color-primario), var(--color-primario-oscuro));
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.chatbot__header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.chatbot__nombre {
  display: block;
  font-family: var(--fuente-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-blanco);
}

.chatbot__estado {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
}

.chatbot__estado-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  display: inline-block;
}

.chatbot__header-cerrar {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transicion-rapida);
  line-height: 1;
}

.chatbot__header-cerrar:hover {
  color: var(--color-blanco);
}

/* Mensajes */
.chatbot__mensajes {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--color-fondo-alt);
  max-height: 400px;
}

.chat-msg {
  max-width: 88%;
  animation: chatMsgIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.chat-msg--bot {
  align-self: flex-start;
}

.chat-msg__burbuja {
  background: var(--color-blanco);
  border: 1px solid var(--color-borde);
  border-radius: 16px 16px 16px 4px;
  padding: 12px 16px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-texto);
  box-shadow: var(--sombra-sm);
  white-space: pre-line;
}

/* Cursor typewriter */
.chat-cursor {
  display: inline;
  font-weight: 300;
  color: var(--color-primario);
  animation: parpadeo 0.7s infinite;
}

@keyframes parpadeo {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Botones de opciones */
.chat-opciones {
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: chatMsgIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-opcion {
  background: var(--color-blanco);
  border: 1.5px solid var(--color-borde);
  border-radius: 12px;
  padding: 10px 14px;
  font-family: var(--fuente-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-texto);
  cursor: pointer;
  transition: all var(--transicion-rapida);
  text-align: left;
}

.chat-opcion:hover {
  border-color: var(--color-primario);
  background: rgba(198,40,40,0.04);
  color: var(--color-primario);
  transform: translateX(4px);
}

/* Botón WhatsApp en chat */
.chat-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--color-blanco);
  font-family: var(--fuente-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all var(--transicion);
  margin-top: 8px;
  text-decoration: none;
}

.chat-wa-btn:hover {
  background: #4ae07e;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.chat-wa-btn svg {
  flex-shrink: 0;
}

/* ========== RESPONSIVE — REDES Y CHATBOT MOBILE ========== */
@media (max-width: 768px) {
  /* Redes sociales: se colapsan */
  .redes-flotantes {
    bottom: 16px;
    right: 16px;
  }

  .redes-flotantes__toggle {
    display: flex;
  }

  .redes-flotantes__lista {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    transform-origin: bottom center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .redes-flotantes--abierto .redes-flotantes__lista {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .redes-flotantes__tooltip {
    display: none;
  }

  .redes-flotantes__boton {
    width: 44px;
    height: 44px;
  }

  /* Chatbot mobile */
  .chatbot {
    left: 16px;
    bottom: 16px;
  }

  .chatbot__boton {
    width: 52px;
    height: 52px;
  }

  .chatbot__panel {
    width: calc(100vw - 32px);
    max-width: 360px;
    max-height: 70vh;
    left: 0;
    bottom: 68px;
  }
}
/* Esto reduce el espacio de arriba en la parte principal */
.hero__contenido {
    padding-top: 1rem !important; 
    margin-top: 0 !important;
}

/* Ajusta el logo para que no empuje el contenido hacia abajo */
.header {
    margin-bottom: 0 !important;
}

/* ANIMACIONES PREMIUM HERO */
.bomba-interactiva:hover {
    transform: scale(1.05) rotateY(-10deg);
}

.bomba-peculiar-premium {
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.bomba-tooltip {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: #C6952B;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: bounceTooltip 2s infinite;
    pointer-events: none;
}

.bomba-tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #C6952B;
}

@keyframes bounceTooltip {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.bomba-scanline {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    background-size: 100% 4px;
    animation: scanline 4s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Optimización Responsive */
@media (max-width: 768px) {
    .hero__contenido { text-align: center !important; }
    .hero__descripcion { margin: 15px auto !important; }
    .hero__despachador-contenedor { flex: 0 1 200px !important; }
}

/* --- KIOSCO SAYRO UI/UX --- */

/* Scanline y efectos de pantalla */
.kiosco-scanline {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
    background-size: 100% 4px;
    animation: scanlineMovement 4s linear infinite;
    pointer-events: none;
}

@keyframes scanlineMovement {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Tooltip animado */
.kiosco-tooltip {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: #C6952B;
    color: #000;
    padding: 8px 18px;
    border-radius: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    animation: bounceTooltip 2s infinite;
    z-index: 20;
}

@keyframes bounceTooltip {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* RESPONSIVE LOGIC */

/* Escritorio: Texto Izquierda, Kiosco Derecha */
@media (min-width: 992px) {
    .contenedor-hero-flex {
        flex-direction: row !important;
        gap: 5rem !important;
    }
    /* Mueve el kiosco un poco a la izquierda respecto al borde */
    .hero__kiosco-contenedor {
        margin-right: 40px;
    }
}

/* Móvil: Kiosco ARRIBA, Texto ABAJO */
@media (max-width: 991px) {
    .contenedor-hero-flex {
        flex-direction: column-reverse !important;
        gap: 2.5rem !important;
    }
    .hero__contenido {
        text-align: center !important;
    }
    .hero__descripcion {
        margin: 15px auto !important;
    }
}

/* --- DISEÑO INMERSIVO HERO --- */

/* === Hero Titulo: mobile 2 lineas: ¡LITROS / DE A LITRO! === */
@media (max-width: 1023px) {
    .hero__litros { display: block !important; }
    .hero__dea-linea { display: inline !important; }
    .hero__linea-decorativa { display: none !important; }
    .hero__dea-linea + .hero__palabra { display: inline !important; }
}

/* Contenedor Responsive */
@media (min-width: 1024px) {
    .contenedor-hero-responsive { flex-direction: row !important; }
}

/* El Portal: Forma Orgánica */
.portal-frame {
    position: relative;
    width: 320px;
    height: 320px;
    background: #FFF;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Forma orgánica */
    border: 2px solid rgba(198, 149, 43, 0.3);
    overflow: visible;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: morphForm 8s ease-in-out infinite;
}

@keyframes morphForm {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
}

.portal-media {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
    position: relative;
    z-index: 5;
    /* Forzar recorte en mobile (iOS Safari) */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}

.video-leon-vibe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.video-overlay-tint {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(198,149,43,0.2), transparent);
    mix-blend-mode: multiply;
}

/* Anillos Tecnológicos */
.ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(198, 149, 43, 0.5);
    pointer-events: none;
}

.ring-1 { width: 110%; height: 110%; animation: rotateRing 15s linear infinite; }
.ring-2 { width: 125%; height: 125%; animation: rotateRing 20s linear reverse infinite; border-style: double; opacity: 0.3; }

@keyframes rotateRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Aura de Energía */
.portal-energy {
    position: absolute;
    top: 50%; left: 50%;
    width: 150%; height: 150%;
    background: radial-gradient(circle, rgba(198, 149, 43, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulseEnergy 4s ease-in-out infinite;
}

@keyframes pulseEnergy {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Tooltip y Etiquetas */
.portal-tag {
    position: absolute;
    bottom: -15px;
    right: 0;
    background: #C6952B;
    color: #000;
    padding: 10px 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    border-radius: 5px;
    z-index: 10;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.5);
    white-space: nowrap;
}

.blink-dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: #f00;
    border-radius: 50%;
    margin-right: 8px;
    animation: blink 1s infinite;
}

@keyframes blink { 50% { opacity: 0; } }

/* Botón Premium — efecto olas de gasolina */
.boton-premium {
    position: relative;
    padding: 20px 40px;
    background: transparent;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-decoration: none;
    border: 2px solid #C6952B;
    border-radius: 25px;
    overflow: hidden;
    transition: color 0.5s, border-color 0.5s;
    z-index: 1;
}

/* Capa de liquido */
.boton-premium .liquid {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: #C6952B;
    transition: height 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

/* Ola 1 — mismo color que el liquido */
.boton-premium .liquid::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -200px;
    width: calc(100% + 400px);
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 18'%3E%3Cpath d='M0 9 C25 3, 75 15, 100 9 S175 3, 200 9 V18 H0Z' fill='%23C6952B'/%3E%3C/svg%3E") repeat-x;
    background-size: 200px 18px;
    animation: ola-1 3s linear infinite;
}

/* Ola 2 — ligeramente mas clara para dar volumen */
.boton-premium .liquid::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -160px;
    width: calc(100% + 320px);
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 14'%3E%3Cpath d='M0 7 C20 2, 60 12, 80 7 S140 2, 160 7 V14 H0Z' fill='%23C6952B' opacity='0.7'/%3E%3C/svg%3E") repeat-x;
    background-size: 160px 14px;
    animation: ola-2 2.5s linear infinite;
}

.boton-premium:hover .liquid {
    height: 100%;
}

.boton-premium:hover {
    color: #1A1A1A;
    border-color: #F5D576;
}

@keyframes ola-1 {
    from { background-position-x: 0; }
    to { background-position-x: -200px; }
}

@keyframes ola-2 {
    from { background-position-x: 0; }
    to { background-position-x: 160px; }
}

/* ========== PORTAL LEON — RESPONSIVE ========== */
@media (max-width: 1023px) {
    /* Titulo primero, leon abajo */
    .contenedor-hero-responsive {
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .hero__portal-wrapper {
        flex: 0 0 auto !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .portal-frame {
        width: 180px;
        height: 180px;
    }

    .portal-tag {
        padding: 6px 14px;
        font-size: 0.75rem;
        right: auto;
        left: auto;
        position: relative;
        margin: -20px auto 0;
        display: block;
        width: fit-content;
        text-align: center;
        bottom: auto;
    }

    .floating-text-ux {
        font-size: 0.7rem !important;
    }

    .ring-1 { width: 108%; height: 108%; }
    .ring-2 { width: 115%; height: 115%; }

    .portal-energy {
        width: 120%;
        height: 120%;
    }
}

@media (max-width: 480px) {
    .portal-frame {
        width: 150px;
        height: 150px;
    }

    .portal-tag {
        padding: 4px 10px;
        font-size: 0.65rem;
        bottom: -8px;
        right: -6px;
    }

    .floating-text-ux {
        font-size: 0.6rem !important;
    }
}