@import url('https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  padding-top: 70px; /* espacio para la navbar */
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 70px;
  background: #111;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.navbar .logo {
  font-family: 'Gloria Hallelujah', cursive;
  font-weight: bold;
  font-size: 1.4rem;
  color: #e74c3c;
  margin-right: 40px;
}

.navbar .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Desktop */
@media (min-width: 769px) {
  .navbar .menu {
    display: flex;
    gap: 25px;
  }
  .menu-toggle {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .navbar .menu {
    display: none; /* oculto por defecto */
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    z-index: 999;
  }

  .navbar .menu.show {
    display: flex; /* se muestra al activar */
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
  }

  .navbar .menu li {
    margin: 15px 0;
  }
}

.navbar .menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.navbar .menu li a:hover {
  color: #e74c3c;
}

/* Hero con imagen de fondo */
header.hero {
  height: 100vh;
  background: url('img/7.jpeg') no-repeat center center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

header.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.hero-overlay {
  position: relative;
  z-index: 1;
}

.hero-logo {
  max-width: 550px;
  width: 90%;
  filter: drop-shadow(0 0 12px rgba(0,0,0,0.8));
  animation: fadeIn 2s ease-in-out;
}

/* Animación del logo */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Bienvenida */
#bienvenida {
  background: linear-gradient(135deg, #111, #000);
  padding: 50px 20px;
  margin: 40px auto;
  border-radius: 12px;
  text-align: center;
  max-width: 800px;
}

.bienvenida-content h2 {
  font-family: 'Gloria Hallelujah', cursive;
  color: #e74c3c;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.bienvenida-content .subtitulo {
  font-size: 1.2rem;
  font-style: italic;
  color: #fff;
  margin-bottom: 25px;
}

.bienvenida-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #ddd;
}

.bienvenida-content .frase-final {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 25px;
  color: #fff;
}

.bienvenida-content .resaltado {
  font-family: 'Gloria Hallelujah', cursive;
  color: #e74c3c;
  text-transform: uppercase;
}

/* Galería */
.thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.thumbnails img {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s;
}

.thumbnails img:hover {
  transform: scale(1.05);
  border: 2px solid #e74c3c;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.9);
  text-align: center;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  margin-top: 5%;
  border: 3px solid #e74c3c;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px; right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
}

.nav.prev { left: 20px; }
.nav.next { right: 20px; }

/* Videos */
.videos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.videos video {
  max-width: 300px;
  border: 2px solid #e74c3c;
  border-radius: 8px;
}

/* Contacto */
#contacto {
  padding: 60px 20px;
  text-align: center;
  background: #111;
  border-top: 2px solid #e74c3c;
}

#contacto h2 {
  color: #e74c3c;
  margin-bottom: 20px;
}

.contact-buttons {
  margin: 15px 0;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  margin: 8px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}

.btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Botón WhatsApp */
.btn.whatsapp {
  background-color: #25D366;
  color: #fff;
}

/* Botón Instagram */
.btn.instagram {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  color: #fff;
}

/* Footer */
footer {
  background-color: #000;
  text-align: center;
  padding: 20px;
  color: #fff;
}

footer .tuneup {
  font-family: 'Gloria Hallelujah', cursive;
}

/* Precios */
#precios {
  background: #111;
  padding: 60px 20px;
  text-align: center;
  border-top: 2px solid #e74c3c;
  border-bottom: 2px solid #e74c3c;
}

#precios h2 {
  color: #e74c3c;
  font-size: 2rem;
  margin-bottom: 40px;
}

.precios-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.precio-card {
  background: #000;
  border: 1px solid #e74c3c;
  border-radius: 10px;
  padding: 25px;
  width: 280px;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.precio-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(231, 76, 60, 0.5);
}

.precio-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.precio-card .precio {
  color: #e74c3c;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.precio-card p {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.5;
}

.precio-card button {
  margin-top: 15px;
  padding: 10px 15px;
  background: #e74c3c;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.precio-card button:hover {
  background: #c0392b;
}

.precio-card ul {
  list-style: none;
  padding: 0;
  margin: 15px auto;
  text-align: center;
}

.precio-card ul li {
  font-size: 0.95rem;
  color: #ddd;
  margin: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

/* Secciones de salas */
.sala {
  background: #111;
  padding: 60px 20px;
  text-align: center;
  border-top: 2px solid #e74c3c;
}

.sala h2 {
  color: #e74c3c;
  font-size: 2rem;
  margin-bottom: 30px;
}

.sala ul {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  text-align: center;
}

.sala ul li {
  font-size: 1rem;
  color: #ddd;
  margin: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

/* Ocultar por defecto */
.oculto {
  display: none;
}

/* Fade-in/out */
.fade {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.fade.show {
  opacity: 1;
}

/* Botón Volver */
.sala button,
.volver-videos button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #444;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.sala button:hover,
.volver-videos button:hover {
  background: #e74c3c;
}

.volver-videos {
  text-align: center;
  margin-top: 20px;
}

/* Dirección */
.direccion {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.mapa {
  margin: 20px auto;
  width: 400px;
  height: 250px;
  border: 2px solid #e74c3c;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}

/* Estacionamiento */
#estacionamiento {
  background: #111;
  padding: 50px 20px;
  text-align: center;
  border-top: 2px solid #e74c3c;
}

#estacionamiento h2 {
  color: #e74c3c;
  font-size: 2rem;
  margin-bottom: 20px;
}

#estacionamiento p {
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.6;
}

