/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0b0616;
  color: #fff;
  overflow-x: hidden;
}

/* ================= HERO CON VIDEO ================= */
.hero-video {
  position: relative;
  height: 75vh;
  overflow: hidden;
}

/* VIDEO HERO */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* OVERLAY HERO */
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1;
}

/* CONTENIDO HERO */
.hero-content {
  position: relative;
  z-index: 2;
  height: 126%;
  max-width: 1100px;
  margin: auto;
  padding: -1px 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ================= HERO LEFT ================= */
.hero-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.group-photo {
  max-width: 600px;
  width: 124%;
  object-fit: contain;
}

/* ================= HERO RIGHT ================= */
.hero-right {
  flex: 1;
  text-align: left;
}

.logo {
  max-width: 480px;
  width: 100%;
  object-fit: contain;
}

/* ================= ANIMACIONES ================= */
.anim-logo {
  opacity: 0;
  transform: scale(.7);
  animation: logoEntrada 1.2s ease-out forwards;
}

@keyframes logoEntrada {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.anim-grupo {
  opacity: 0;
  transform: translateY(40px);
  animation: grupoEntrada 1.4s ease-out forwards;
  animation-delay: .4s;
}

@keyframes grupoEntrada {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= SECCIONES ================= */
.section {
  padding: 35px 5%;
}

/* ================= REPERTORIO ================= */
.repertorio {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* VIDEO FONDO REPERTORIO */
.repertorio-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* OVERLAY REPERTORIO */
.repertorio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 20, 0.45);
  z-index: 1;
}

/* CONTENIDO REPERTORIO */
.rep-title,
.circular-carousel {
  position: relative;
  z-index: 2;
}

.rep-title {
  font-size: 3.3rem;
  letter-spacing: 5px;
  margin-bottom: 218px;
  text-align: center;
  font-weight: 800;
  color: #ffffff;

 text-shadow:
  0 0 4px #ffffff,
  0 0 10px #ff1744,
  0 0 20px #ff1744,
  0 0 40px #d50000,
  0 0 70px #d50000;

  animation: neonFlicker 4s infinite alternate;
}

/* ================= CARRUSEL CIRCULAR ================= */
.circular-carousel {
  position: relative;
  max-width: 900px;
  margin: auto;
  height: 420px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ITEM BASE (JS CONTROLA TODO) */
.carousel-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 300px;

  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 0;

  transition: transform .7s ease, opacity .7s ease;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;

  /* NEON BLANCO */
    box-shadow:
    0 20px 40px rgba(0,0,0,.55),
    0 0 12px rgba(255,255,255,.18); 

  animation: cardGlow 4s infinite ease-in-out;
  transition: transform .4s ease, box-shadow .4s ease;
}

/* ================= VIDEO SECCIÓN ================= */
.video {
  position: relative;
  max-width: 700px;
  margin: auto;
}

.video img {
  width: 100%;
  border-radius: 20px;
}

.play {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-radius: 20px;
}

/* ================= FOOTER ================= */
footer {
  padding: 40px;
  text-align: center;
  background: #000;
  font-size: .9rem;
  color: #aaa;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-right {
    text-align: center;
  }

  .group-photo,
  .logo {
    max-width: 260px;
  }
}

@media (max-width: 768px) {
  .hero-video {
    height: 90vh;
  }

  .group-photo,
  .logo {
    max-width: 220px;
  }

  .rep-title {
    font-size: 1.9rem;
  }
}

@keyframes glowPulse {
  0% {
    text-shadow:
      0 0 6px rgba(255,255,255,0.35),
      0 0 14px rgba(255,23,68,0.45),
      0 0 28px rgba(213,0,0,0.3);
  }

  50% {
    text-shadow:
      0 0 10px rgba(255,255,255,0.7),
      0 0 26px rgba(255,23,68,0.9),
      0 0 60px rgba(213,0,0,0.6);
  }

  100% {
    text-shadow:
      0 0 6px rgba(255,255,255,0.35),
      0 0 14px rgba(255,23,68,0.45),
      0 0 28px rgba(213,0,0,0.3);
  }
}

@keyframes neonFlicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    text-shadow:
      0 0 4px #ffffff,
      0 0 10px #ff1744,
      0 0 20px #ff1744,
      0 0 40px #d50000,
      0 0 70px #d50000;
  }

  20%, 24%, 55% {
    text-shadow:
      0 0 2px #ffffff,
      0 0 6px #ff1744,
      0 0 12px #d50000;
  }
}

@keyframes cardGlow {
  0% {
    box-shadow:
      0 0 6px rgba(255,255,255,0.25),
      0 0 14px rgba(255,255,255,0.15);
  }

  50% {
    box-shadow:
      0 0 12px rgba(255,255,255,0.45),
      0 0 28px rgba(255,255,255,0.25);
  }

  100% {
    box-shadow:
      0 0 6px rgba(255,255,255,0.25),
      0 0 14px rgba(255,255,255,0.15);
  }
}

/* ================= GENEROS MUSICALES ================= */
.generos {
  background: #0b0616;
  text-align: center;
}

.gen-title {
  font-size: 3rem;
  margin-bottom: 60px;
  letter-spacing: 4px;
  font-weight: 600;
}

/* GRID */
.generos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.genero-card {
  position: relative;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0,0,0,.6);
  transition: transform .35s ease, box-shadow .35s ease;
}

.genero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,.8);
}

/* IMAGEN */
.genero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY OSCURO */
.genero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

/* TEXTO */
.genero-card span {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 2px;
}

/* ================= CTA SERENATAS ================= */
.cta-serenata {
  background: linear-gradient(180deg, #0b0616, #120b24);
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: auto;
}

.cta-title {
  font-size: 2.6rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #ffffff;
}

.cta-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 40px;
}

/* BOTÓN CTA */
.cta-btn {
  display: inline-block;
  padding: 15px 45px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: #b11226; /* rojo elegante */
  border-radius: 40px;
  text-decoration: none;
  transition: all .3s ease;
}

.cta-btn:hover {
  background: #e01432;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(225, 20, 50, 0.35);
}

/* ================= MENU ================= */
html {
  scroll-behavior: smooth;
}

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 21px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #ddd;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width .3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ESPACIO PARA HEADER FIJO */
.hero-video {
  margin-top: 70px;
}

/* RESPONSIVE MENU */
@media (max-width: 768px) {
  .nav-links {
    gap: 18px;
    font-size: 0.9rem;
  }
}

/* ================= BIOGRAFIA ================= */
.biografia {
  background: #0b0616;
  text-align: center;
}

.bio-container {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
}

.bio-container h2 {
  font-size: 2.8rem;
  letter-spacing: 3px;
  margin-bottom: 30px;
  font-weight: 700;
}

.bio-container p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #ddd;
  margin-bottom: 20px;
}

/* IMÁGENES */
.bio-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.bio-images img {
  width: 99%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0,0,0,0.45);
}

/* ================= RESPONSIVE BIOGRAFIA ================= */
@media (max-width: 768px) {
  .bio-container h2 {
    font-size: 2.1rem;
  }

  .bio-container p {
    font-size: 1rem;
  }
}

/* ================= SHOW ================= */

.show {
  background: linear-gradient(180deg, #000, #120018);
  padding: 100px 5%;
  text-align: center;
}

.show-title {
  font-size: 2.4rem;
  margin-bottom: 70px;
  letter-spacing: 4px;
  text-shadow: 0 0 15px rgba(180,80,255,.6);
}

/* CONTENEDOR */
.show-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

/* TARJETA BASE */
.show-card {
  background: rgba(20, 0, 40, 0.6);
  border-radius: 22px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .4s ease, box-shadow .4s ease;
}

.show-card:hover {
  transform: translateY(-12px) scale(1.03);
}

/* TITULOS */
.show-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.show-card .price {
  font-size: 1.1rem;
  opacity: .85;
  margin-bottom: 25px;
}


/* LISTA */
.show-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.show-card ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* BOTON SOLICITAR */
.show-card .btn.solicitar {
  display: block;
  width: 100%;
  padding: 14px;
  margin-top: 12px;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}

/* ===== COLORES POR PLAN ===== */

/* PLATA */
.show-card.plata {
  box-shadow: 0 0 25px rgba(180,180,180,.15);
}
.show-card.plata h3 { color: #dcdcdc; }
.show-card.plata button {
  background: #cfcfcf;
  color: #000;
}

/* ORO */
.show-card.oro {
  box-shadow: 0 0 35px rgba(255,215,0,.25);
}
.show-card.oro h3 { color: #ffd700; }
.show-card.oro button {
  background: linear-gradient(90deg, #ffd700, #ffae00);
  color: #000;
}

/* PREMIUM */
.show-card.premium {
  box-shadow: 0 0 45px rgba(180,80,255,.4);
}
.show-card.premium h3 { color: #b84cff; }
.show-card.premium button {
  background: linear-gradient(90deg, #b84cff, #6a00ff);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .show-cards {
    grid-template-columns: 1fr;
  }
}

/* ================= VIDEO MODAL ================= */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* CAJA DEL VIDEO */
.video-box {
  position: relative;
  width: 90%;
  max-width: 600px;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(180,80,255,.6);
}

.video-box video {
  width: 100%;
  display: block;
}

/* BOTON CERRAR */
.close-modal {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

/* BOTON VER VIDEO */
.btn-video {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.3);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background .3s ease;
}

.btn-video:hover {
  background: rgba(255,255,255,.15);
}

/* ================= CONTACTO ================= */
.contacto {
  background: radial-gradient(circle at top, #16001f, #000);
  text-align: center;
}

.contacto-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  letter-spacing: 3px;
}

.contacto-sub {
  opacity: .8;
  margin-bottom: 60px;
}

.contacto-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  text-align: left;
}

/* INFO */
.contacto-info h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.contacto-info p {
  margin-bottom: 12px;
  opacity: .9;
}

/* WHATSAPP */
.btn-whatsapp {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  background: #25d366;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}

.btn-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(37,211,102,.6);
}

/* FORM */
.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contacto-form input,
.contacto-form textarea {
  padding: 14px;
  border-radius: 12px;
  border: none;
  outline: none;
  font-family: inherit;
}

.contacto-form button {
  margin-top: 10px;
  padding: 14px;
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
  border: none;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}

.contacto-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(150, 80, 255, .6);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contacto-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ================= BOTONES FLOTANTES ================= */
.social-float {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,.6);
  transition: transform .3s ease, box-shadow .3s ease;
}

.float-btn img {
  width: 30px;
  height: 30px;
}

/* COLORES */
.float-btn.whatsapp {
  background: #25d366;
}

.float-btn.phone {
  background: #1e90ff;
}

.float-btn.instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}

.float-btn.facebook {
  background: #1877f2;
}

.float-btn.tiktok {
  background: #000000;
}

/* HOVER */
.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 35px rgba(0,0,0,.8);
}

/* ===== SOLICITAR POR PLAN ===== */

/* PLATA */
.show-card.plata .btn.solicitar {
  background: #cfcfcf;
  color: #000;
}

/* ORO */
.show-card.oro .btn.solicitar {
  background: linear-gradient(90deg, #ffd700, #ffae00);
  color: #000;
}

/* PREMIUM */
.show-card.premium .btn.solicitar {
  background: linear-gradient(90deg, #b84cff, #6a00ff);
  color: #fff;
}

.show-card .btn.solicitar:hover {
  transform: scale(1.06);
  box-shadow: 0 0 22px rgba(180,80,255,.6);
}

/* ================= BOTON VER VIDEO PRO ================= */

.show-card .btn-video {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  color: #000;
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
}

/* ===== PLATA ===== */
.show-card.plata .btn-video {
  background: linear-gradient(135deg, #e5e5e5, #bfbfbf);
  box-shadow: 0 0 18px rgba(220,220,220,.45);
}

/* ===== ORO ===== */
.show-card.oro .btn-video {
  background: linear-gradient(135deg, #ffd700, #ffae00);
  box-shadow: 0 0 22px rgba(255,215,0,.6);
}

/* ===== PREMIUM ===== */
.show-card.premium .btn-video {
  background: linear-gradient(135deg, #b84cff, #6a00ff);
  box-shadow: 0 0 28px rgba(180,80,255,.7);
  color: #fff;
}

/* ===== HOVER PRO ===== */
.show-card .btn-video:hover {
  transform: scale(1.06);
  filter: brightness(1.1);
}

/* ================= POKER RAIN ================= */
.poker-rain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9998;
}

.poker-card {
  position: absolute;
  top: -120px;
  width: 45px;              /* tamaño realista */
  height: auto;
  opacity: 0.95;
  object-fit: contain;
  animation: fall linear forwards;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.6));
}

/* Animación más natural */
@keyframes fall {
  to {
    transform: translateY(120vh) rotate(120deg);
    opacity: 0;
  }
}

@media (max-width: 900px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: rgba(0,0,0,.95);
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 30px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

/* MÓVIL Y TABLET */
@media (max-width: 900px) {

  /* Ocultar SOLO la foto del grupo */
  .hero-grupo {
    display: none;
  }

  /* Centrar el logo */
  .hero-content {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-logo {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-logo .logo {
    max-width: 314px;
    width: 80%;
    margin: 0 auto;
  }
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 900px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: rgba(0,0,0,.95);
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 30px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

.seo-title {
  position: absolute;
  left: -9999px;
}







