.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 64px;              /* altura fija del menú */
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;       /* centra verticalmente */
  justify-content: space-between;
  padding: 0 24px;           /* quitamos padding vertical */
  z-index: 1000;
}


.logo img {
  height: 140px;
  width: auto;
  margin-top: 15px;
  margin-left: -30px;
}

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

.menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.menu li a:hover {
  color: #c40000;
}

/*.hero {
  margin-top: 70px;
}*/

html {
  scroll-behavior: smooth;
}


* 
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.hero {
  position: relative;
  height: 100vh;
  background: url('../img/hero-bg.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* opacidad */
  z-index: 1;
}

/* Contenido encima */
.overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 20px;
  max-width: 900px;
}

.btn {
  background: #c40000;
  color: #fff;
  padding: 15px 30px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transform: translateY(20px); /* ⬇️ baja el botón */
}


section {
  padding: 60px 20px;
  text-align: center;
}

.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #111;
  color: #fff;
  padding: 40px;
  width: 280px;
  border-radius: 10px;
}

.integrantes {
  background: #0d0d0d;
  color: #fff;
}

.integrantes .subtitulo {
  margin-top:15px;
  margin-bottom: 40px;
  color: #ccc;
}

/* Grid responsive */
.integrantes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.integrante-card {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.integrante-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.integrante-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
/*
.integrante-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(196, 0, 0, 0.4);
}*/

.integrante-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 15px 35px rgba(196, 0, 0, 0.45),
    0 0 25px rgba(196, 0, 0, 0.35);
}



/* Nombre */
.integrante-card h3 {
  padding: 15px;
  font-size: 18px;
  background: #000;
}

.integrante-info {
  padding: 16px;
  background: #000;
  text-align: center;
}

.integrante-info h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.integrante-info span {
  font-size: 14px;
  color: #c40000;
  font-weight: bold;
  letter-spacing: 1px;
}

.galeria {
  background: #000;
  color: #fff;
}

.galeria .subtitulo {
  margin-bottom: 40px;
  color: #ccc;
}

/* Grid responsive */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card de video */
.video-card {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover elegante */
.video-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 15px 35px rgba(196, 0, 0, 0.45),
    0 0 20px rgba(196, 0, 0, 0.25);
}

/* Video responsive */
.video-card iframe {
  width: 100%;
  height: 220px;
  border: none;
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Botón play */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(196, 0, 0, 0.85);
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(196, 0, 0, 0.6);
}

.play-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
}

/* Hover */
.video-card:hover .video-thumb img {
  transform: scale(1.08);
}

.video-card:hover .play-btn {
  box-shadow: 0 0 35px rgba(196, 0, 0, 0.9);
}

@media (max-width: 768px) {
  .video-thumb {
    height: 200px;
  }

  .play-btn {
    width: 54px;
    height: 54px;
  }
}


@media (max-width: 768px) {
  .video-card iframe {
    height: 200px;
  }
}

.packages {
  background: #0b0b0b;
  color: #fff;
}

.packages .subtitulo {
  margin-bottom: 15px;
  color: #ccc;
}

/* Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.package-card {
  background: #292929;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.package-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 18px 40px rgba(196, 0, 0, 0.45),
    0 0 25px rgba(196, 0, 0, 0.25);
}

/* Destacado */
.package-card.destacado {
  border: 2px solid #c40000;
  position: relative;
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #c40000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

/* Textos */
.package-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.price {
  font-size: 26px;
  font-weight: bold;
  margin: 20px 0;
  color: #3bca72;
}

.package-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.package-card ul li {
  margin: 12px 0;
  font-size: 15px;
}

/* Botón */
.btn-package {
  display: inline-block;
  padding: 14px 30px;
  background: #c40000;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-package:hover {
  background: #ff0000;
  transform: scale(1.05);
}

.contacto {
  background: #000;
  color: #fff;
}

.contacto .subtitulo {
  margin-bottom: 50px;
  color: #ccc;
}

/* Grid */
.contacto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.contacto-item {
  background: #111;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contacto-item:hover {
  transform: translateY(-10px);
  box-shadow:
    0 15px 35px rgba(196, 0, 0, 0.45),
    0 0 20px rgba(196, 0, 0, 0.25);
}

/* Icono superior */
.contacto-item .icon {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
}

/* Textos */
.contacto-item h3 {
  margin-bottom: 10px;
}

.contacto-item a {
  color: #fff;
  text-decoration: none;
}

.contacto-item a:hover {
  color: #c40000;
}

/* Redes */
.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 15px;
}

.social-links a {
  font-size: 28px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
  color: #c40000;
}

/* Footer */
.footer {
  background: #000;
  text-align: center;
  padding: 20px;
  color: #777;
  font-size: 14px;
}

.social-footer {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.social-footer a img {
  width: 32px;
  height: 32px;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-footer a:hover img {
  transform: scale(1.2);
  opacity: 1;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  z-index: 2000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(253, 255, 254, 0.65);
}

.packages-note {
  max-width: 900px;
  margin: 0px auto 0;
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}
.quienes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 20px;
}

.quienes-texto p {
  color: #312f2f;
  line-height: 1.7;
  margin-bottom: 15px;
  margin-top: 15px;
}

.h2_titulo {
  margin-top:15px;
}

/* Imagen */
.quienes-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(196, 0, 0, 0.25);
}

@media (max-width: 900px) {
  .quienes-grid {
    grid-template-columns: 1fr;
  }

  .quienes-img {
    order: -1;
  }
}

/* Navbar base */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  z-index: 1000;
}

/* Menú desktop */
.menu {
  display: flex;
  gap: 25px;
  list-style: none;
}

.menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.menu li a:hover {
  color: #c40000;
}

/* Botón hamburguesa */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}


/*Para Movil*/
@media (max-width: 900px) {

  /* mostrar hamburguesa */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10001;
  }

  /* ocultar menú por defecto */
  .menu {
    display: none;              /* 🔑 CLAVE */
    position: fixed;
    top: 64px;                  /* coincide con altura del navbar */
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: #000;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    gap: 25px;
    z-index: 10000;
  }

  /* mostrar solo cuando está activo */
  .menu.active {
    display: flex;
  }

  /* ==== ANIMACIÓN HAMBURGUESA (NO INVADE ESTILOS) ==== */

  .menu-toggle span {
    transition: transform 0.35s ease, opacity 0.25s ease;
  }

  /* cuando está activo */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* ===== GALERÍA DE VIDEOS ===== */

.galeria {
  padding: 80px 10%;
  background: #0b0b0b;
  text-align: center;
}

.galeria h2 {
  color: #fff;
  margin-bottom: 40px;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.video-card {
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(200,0,0,0.4); /* glow rojo norteño */
}

.video-card video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

.btn-whatsapp {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

/* ===== HERO SLIDER ===== */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* capa del slider */
.hero-slider {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

/* overlay oscuro pro */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2;
}

/* contenido */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
