/* Paleta racing */
:root {
  --blanco: white; /* rojo racing */
}

/* Fondo general racing con degradado diagonal 50/50 */
body {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  background-color: #000000;
  color: white;
  overflow-x: hidden;
}

divSecciones {
  background: linear-gradient(
    135deg,
    #d40000 0%,
    #d40000 40%,
    #000000 40%,
    #000000 85%,
    #ffffff 85%,
    #ffffff 100%
  );
}

/* Hero con imagen de fondo */
.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 10px 0 0 0; /* Antes 20px, ahora más arriba */
}

.hero img {
  max-width: 100%;
  height: auto;
  display: block;
}

.card-fija {
  width: 100%;
  text-align: center;
  background: rgba(0,0,0,0.7);
  padding: 12px;
  margin-top: 10px;
  border-bottom: 2px solid var(--rojo);
  color: white;
  font-weight: 600;
}



/* Título racing */
.titulo-sitio {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 3px;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(0,0,0,0.8);
  z-index: 10;
  text-align: center;
}

/* Contenedor del mapa */
.map-container {
  width: min(80%, 700px);
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border: 3px solid var(--rojo);
  border-radius: 10px;
  backdrop-filter: blur(3px);
}

/* Texto UBICACIÓN */
.label {
  margin-top: 20px;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: bold;
  color: var(--rojo);
  letter-spacing: 2px;
}

/* Menú lateral racing */
.menu-lateral {
  position: fixed;
  right: 20px;
  top: 50%;
  color: gray;
  transform: translateY(-50%);
  border-right: 3px solid var(--rojo);
  padding-right: 15px;
  z-index: 20;
}

.menu-lateral nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-lateral a {
  color: #d40000;
  text-decoration: none;
  font-size: 1.4rem;
  letter-spacing: 2px;
  font-weight: 600;
  transition: 0.2s;
}

.menu-lateral a:hover {
  color: var(--rojo);
  transform: translateX(-5px);
}

/* Cards de contenido */
.contenido {
  width: min(90%, 700px);
  margin: 40px auto; /* centra y separa verticalmente */
  padding: 25px;
  background: rgba(0, 0, 0, 0.65);
  border: 2px solid var(--rojo);
  border-radius: 12px;
  color: white;
  font-size: 1.3rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

/* Ocultas por defecto */
.oculto {
  display: none;
}

/* Títulos dentro de las cards */
.contenido h2 {
  margin-top: 0;
  color: var(--rojo);
  letter-spacing: 2px;
  font-size: 2rem;
}

/* Panel vertical racing */
.horario-panel2 {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px;
}

/* Cada bloque del horario */
.bloque {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 20px;
  background: rgba(0,0,0,0.55);
  border: 2px solid var(--rojo);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

/* Día */
.bloque .dia {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--rojo);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

/* Horas */
.bloque .hora {
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 500;
}

/* Domingo cerrado */
.bloque.cerrado {
  border-color: #777;
}

.bloque.cerrado .hora {
  color: #bbbbbb;
  font-weight: 600;
  letter-spacing: 2px;
}

/* Contenedor horizontal compacto */
.contacto-mini {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap; /* para que en móvil bajen */
}

/* Mini cards */
.mini-box {
  width: 180px; /* más pequeño */
  padding: 15px 10px;
  background: rgba(0,0,0,0.55);
  border: 2px solid var(--rojo);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  text-align: center;
}

/* Icono */
.mini-icono {
  font-size: 1.8rem;
  margin-bottom: 6px;
  display: block;
}

/* Título */
.mini-titulo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rojo);
  letter-spacing: 1px;
  margin-bottom: 3px;
  display: block;
}

/* Dato */
.mini-dato {
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
  display: block;
}

/* Para que las mini-cards que son enlaces no pierdan estilo */
.enlace-box {
  text-decoration: none;
  color: inherit;
}

/* Hover racing */
.enlace-box:hover {
  border-color: #ff1a1a;
  box-shadow: 0 0 15px rgba(255,0,0,0.4);
  transform: translateY(-3px);
  transition: 0.2s ease;
}
/* Hover racing para todas las mini-cards */
.mini-box:hover {
  border-color: #ff1a1a;
  box-shadow: 0 0 15px rgba(255,0,0,0.4);
  transform: translateY(-3px);
  transition: 0.2s ease;
}

.servicios-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.servicio-box {
  width: 180px;
  padding: 18px 12px;
  background: rgba(0,0,0,0.55);
  border: 2px solid var(--rojo);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  transition: 0.2s ease;
}

.servicio-box:hover {
  border-color: #ff1a1a;
  box-shadow: 0 0 15px rgba(255,0,0,0.4);
  transform: translateY(-3px);
}

.servicio-icono svg {
  width: 26px;
  height: 26px;
  stroke: white;
}

.servicio-box:hover svg {
  stroke: #ff1a1a;
}

.servicio-titulo {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
}
.servicio-smoked {
  border-color: #ff6600; /* color corporativo si lo quieres */
}

.servicio-smoked:hover {
  box-shadow: 0 0 15px rgba(255,102,0,0.4);
  border-color: #ff6600;
}

.servicio-smoked svg {
  stroke: #ff6600;
}

.servicio-smoked:hover svg {
  stroke: #ff1a1a;
}
.servicio-box:hover svg {
  stroke: #ff1a1a;
  fill: #ff1a1a;
}
.mapa-box {
  text-align: center;
  margin-top: 20px;
}

.mapa-img {
  width: 100%;
  max-width: 580px;
  border-radius: 12px;
  border: 2px solid var(--rojo);
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.mapa-boton {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background: var(--rojo);
  color: white;
  background-color: #d40000;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s ease;
}

.mapa-boton:hover {
  background: gray;
  box-shadow: 0 0 12px rgba(255,0,0,0.4);
  color: #000000;
}

.direccion {
  margin-top: 10px;
  font-size: 1.2rem;
  color: white;
  text-align: center;
}

.menu-principal {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: rgba(0,0,0,0.85);
  padding: 12px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  border-bottom: 2px solid var(--rojo);
  backdrop-filter: blur(6px);
}

.menu-principal a {
  color: white;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 16px;
  background: var(--rojo);
  border-radius: 8px;
  transition: 0.2s ease;
}

.menu-principal a:hover {
  background: #ff1a1a;
  box-shadow: 0 0 10px rgba(255,0,0,0.4);
}


/* MÓVIL */
@media (max-width: 768px) {

  /* Contenedor general */
  .contenido {
    padding: 10px;
  }

  /* Mini-cards de servicios */
  .servicio-box {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 12px;
  }

  .servicio-icono svg,
  .servicio-icono img {
    width: 40px;
    height: auto;
  }

  /* Texto de servicios */
  .servicio-titulo {
    font-size: 1.1rem;
  }

  .servicio-sub {
    font-size: 0.9rem;
  }

  /* Imagen del mapa */
  .mapa-img {
    max-width: 100%;
    max-height: 220px;
    object-fit: cover;
  }

  /* Contacto */
  .contacto-box {
    flex-direction: column;
    gap: 10px;
  }

  /* Horario */
  .horario-box {
    width: 100%;
    text-align: center;
  }
}

/* RESPONSIVE DEL MENÚ NUEVO */
@media (max-width: 768px) {
  .wrapper {
    transform: scale(1);
    transform-origin: top center;
    width: 100%;
  }
}

/* HERO EN PANTALLAS GRANDES */
@media (min-width: 769px) {
  .hero img {
    max-width: 600px;   /* Ajusta a tu gusto */
    height: auto;
  }

  .hero {
    margin-top: 10px;   /* Para acercarlo al logo */
  }
}


@media (max-width: 768px) {
  .hero {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .hero img {
    width: 100%;
    height: auto;
    object-fit: contain !important;
  }
}



