/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

/* Colores base */
body {
  background-color: #000000;
  color: #f5f5f5;
  font-size: 16px;
  line-height: 1.6;
}

/* =========================
   HEADER / NAVEGACIÓN
========================= */
header {
  width: 100%;
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 50px;
  width: auto;
}

/* === LINKS DESKTOP === */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #F5786B;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #fff;
}

/* === BOTÓN HAMBURGUESA === */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #F5786B;
  cursor: pointer;
  user-select: none;
  z-index: 1100;
}

/* === MENÚ RESPONSIVE === */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  /* Fondo borroso */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1050;
  }

  .menu-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  /* Panel lateral */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #111;
    flex-direction: column;
    align-items: flex-start; /* 👈 alineado a la izquierda */
    justify-content: center;
    padding-left: 40px;
    gap: 25px;
    transition: right 0.4s ease-in-out;
    z-index: 1100;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    font-size: 1.4rem;
    color: #F5786B;
    font-weight: bold;
    transition: color 0.3s, transform 0.2s;
  }

  .nav-links li a:hover {
    color: #fff;
    transform: translateX(6px);
  }
}

/* =========================
   HERO SECTION
========================= */
.hero {
  background: url("hero-bg.jpg") center/cover no-repeat;
  text-align: center;
  padding: 150px 20px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #bdbdbd;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #bdbdbd;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.btn-primary {
  text-decoration: none;
  padding: 12px 28px;
  background-color: #F5786B;
  color: #000000;
  font-weight: bold;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #ff6f61;
  color: #fff;
}

/* =========================
   SECCIONES GENERALES
========================= */
.section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  background-color: #1c1c1c;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255,255,255,0.05);
}

.section h2 {
  color: #F5786B;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section p {
  color: #cccccc;
  margin-bottom: 15px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background-color: #2a2a2a;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s, color 0.3s;
  color: #F5786B;
}

.card:hover {
  transform: translateY(-5px);
  color: #ff6f61;
}

.card h3 {
  margin-bottom: 10px;
}

.card h3 a {
  color: #F5786B;
  text-decoration: none;
  transition: color 0.3s;
}

.card h3 a:hover {
  color: #ff6f61;
}

.card p {
  color: #f5f5f5;
}

/* =========================
   HORARIOS
========================= */
.horarios-list {
  list-style: none;
  padding-left: 0;
}

.horarios-list li {
  margin-bottom: 10px;
  color: #cccccc;
}

/* =========================
   UBICACIÓN
========================= */
.ubicacion {
  text-align: center;
  padding: 80px 20px;
}

.ubicacion h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.ubicacion-contenido {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.ubicacion-mapa img {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.3s;
}

.ubicacion-mapa img:hover {
  transform: scale(1.02);
}

.ubicacion-texto {
  flex: 1;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.6;
}

iframe {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Mapa Responsivo */
.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  margin-bottom: 20px;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ubicacion-texto {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* =========================
   BOTÓN WHATSAPP
========================= */
.btn-whatsapp {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
}

#map {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* =========================
   REDES SOCIALES
========================= */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 2vw, 20px);
  margin-top: 20px;
}

.social-links a {
  color: #F5786B;
  font-size: clamp(24px, 2vw + 8px, 60px);
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  color: #ff6f61;
  transform: scale(1.2);
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 20px;
  background-color: #1c1c1c;
  margin-top: 50px;
  color: #cccccc;
}

/* =========================
   RESPONSIVE EXTRA
========================= */


/* ==== HEADER BASE ==== */
header {
  width: 100%;
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 60px;
  height: auto;
}

/* ==== MENÚ DESKTOP ==== */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #f5786b;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #fff;
}

/* ==== BOTÓN HAMBURGUESA ==== */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #f5786b;
  cursor: pointer;
  user-select: none;
  z-index: 1100;
}

/* ==== MENÚ RESPONSIVE ==== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  /* Fondo borroso detrás del menú */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1050;
  }

  .menu-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  /* Menú lateral */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #111;
    flex-direction: column;
    align-items: flex-start; /* 👈 alineado a la izquierda */
    justify-content: center;
    gap: 25px;
    padding-left: 40px; /* 👈 margen izquierdo */
    transition: right 0.4s ease-in-out;
    z-index: 1100;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    font-size: 1.4rem;
    color: #f5786b;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s, transform 0.2s;
  }

  .nav-links li a:hover {
    color: #fff;
    transform: translateX(6px); /* Efecto suave */
  }
}


ul li {
  background: #000000;
  margin: 0.5rem 0;
  padding: 0.8rem;
  border-radius: 6px;
  color: #F5786B;
  font-weight: bold;
  transition: background 0.3s;
}
