/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: radial-gradient(circle at top, #2a0a0a, #0a0404);
  color: #fff;
}

/* ================= HEADER ================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: relative;
  z-index: 10;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.login {
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 42, 42, 0.8);
  padding: 8px 16px;
  border-radius: 20px;
}

.login:hover {
  background: rgba(255, 42, 42, 0.15);
}

/* ================= HERO ================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(20,5,5,0.7),
    rgba(20,5,5,0.4)
  );
  z-index: 2;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

/* Artista */
.hero-media img:first-child {
  position: absolute;
  bottom: -20px;
  left: 130px;
  max-height: 103vh;
}

/* Logo */
.hero-media img:last-child {
  position: absolute;
  bottom: 82px;
  right: 226px;
  width: 413px;
  filter: drop-shadow(0 0 18px rgba(255, 42, 42, 0.9));
}

/* ================= SECCIONES ================= */
.section {
  padding: 60px;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 42, 42, 0.4),
    transparent
  );
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  text-shadow: 0 8px 30px rgba(255, 42, 42, 0.45);
}

/* ================= VIDEOS SECTION ================= */

.videos-section {
  position: relative;
  overflow: hidden;
}

/* ================= VIDEO BACKGROUND ================= */

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(115%) contrast(108%);
  opacity: 1;
  z-index: 0;
}

/* overlay MUY suave solo para contraste */
.bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 2, 2, 0.25),
    rgba(10, 2, 2, 0.45)
  );
  z-index: 1;
}

/* contenido arriba del video */
.videos-section > *:not(.bg-video):not(.bg-overlay) {
  position: relative;
  z-index: 2;
}

/* ================= OPTIONS PARALLAX ================= */

.options {
  display: flex;
  gap: 16px;
  padding: 40px 60px;
  height: 420px;
  overflow-x: auto;
  align-items: stretch;
  scroll-behavior: smooth;
}

.options::-webkit-scrollbar {
  height: 6px;
}

.options::-webkit-scrollbar-thumb {
  background: rgba(255, 42, 42, 0.45);
  border-radius: 10px;
}

/* ================= CARD ================= */

.option {
  position: relative;
  flex: 0 0 120px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: var(--optionBackground) center / cover no-repeat;

  filter: brightness(0.7);
  transition:
    flex 0.6s cubic-bezier(0.05, 0.61, 0.41, 0.95),
    transform 0.4s ease,
    filter 0.4s ease;
}

.option.active {
  flex: 0 0 520px;
  filter: brightness(1);
}

/* ================= VIDEO ================= */

.option video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.option.active video {
  opacity: 1;
}

/* ================= SHADOW ================= */

.option .shadow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.2),
    transparent
  );
  z-index: 1;
}

/* ================= LABEL ================= */

.option .label {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  opacity: 0;
  transform: translateY(12px);
  transition: 0.4s ease;
  text-shadow: 0 4px 18px rgba(0,0,0,0.95);
}

.option.active .label {
  opacity: 1;
  transform: translateY(0);
}

.option .label .main {
  font-size: 18px;
  font-weight: 600;
}

.option .label .sub {
  font-size: 14px;
  opacity: 0.75;
}

/* ================= HOVER ================= */

.option:hover {
  transform: translateY(-4px);
}

/* ================= CARD COLOR ================= */

.option {
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 60, 60, 0.25);
}

/* borde rojo cuando está activa */
.option.active {
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.75),
    inset 0 0 0 2px rgba(255, 60, 60, 0.65),
    0 0 25px rgba(255, 60, 60, 0.35);
}

/* glow suave al pasar el mouse */
.option:hover {
  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.65),
    inset 0 0 0 2px rgba(255, 60, 60, 0.4);
}

/* línea roja inferior decorativa */
.option::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 60, 60, 0.9),
    transparent
  );
  opacity: 0;
  transition: 0.4s ease;
}

.option.active::after {
  opacity: 1;
}

/* ================= GENEROS ================= */

.music-genres {
  padding: 80px 60px;
  text-align: center;
  background: linear-gradient(
    to bottom,
    #120404,
    #1a0606
  );
}

.music-genres h2 {
  font-size: 28px;
  margin-bottom: 40px;
  text-shadow: 0 8px 30px rgba(255, 42, 42, 0.45);
}

/* contenedor */
.genre-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* tarjeta individual */
.genre {
  background: rgba(255, 42, 42, 0.05);
  border: 1px solid rgba(255, 42, 42, 0.2);
  padding: 25px 30px;
  border-radius: 18px;
  width: 248px;
  transition: 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.genre img {
  width: 180px;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.genre span {
  display: block;
  font-size: 15px;
  font-weight: 500;
}

/* hover */
.genre:hover {
  transform: translateY(-6px);
  border: 1px solid rgba(255, 42, 42, 0.6);
  box-shadow: 0 15px 35px rgba(255, 42, 42, 0.25);
}

.genre:hover img {
  transform: scale(1.1);
}

/* ================= SERENATAS ================= */

.serenatas-section {
  padding: 100px 60px;
  background: linear-gradient(
    180deg,
    #140404,
    #220707
  );
  text-align: center;
  position: relative;
}

.serenatas-content {
  max-width: 800px;
  margin: 0 auto;
}

.serenatas-section p {
  font-size: 23px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.85);
}

/* BOTÓN PRINCIPAL */
.btn-primary {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  border-radius: 30px;
  background: linear-gradient(
    90deg,
    #ff2a2a,
    #cc0000
  );
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 12px 30px rgba(255, 42, 42, 0.35);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(255, 42, 42, 0.55);
}

/* ================= BIOGRAFÍA ================= */

.bio-section {
  padding: 100px 60px;
  background: linear-gradient(
    180deg,
    #120202,
    #1a0505
  );
}

/* TÍTULO */
.bio-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  color: #ff2a2a;
  letter-spacing: 2px;
}

/* BLOQUE SUPERIOR */
.bio-top-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.bio-photo {
  flex: 1;
  min-width: 280px;
}

.bio-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
  transition: 0.4s ease;
}

.bio-img:hover {
  transform: scale(1.03);
}

/* TEXTO */
.bio-text {
  flex: 1.2;
  min-width: 280px;
}

.bio-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  font-size: 18px;
}

/* BLOQUE FINAL */
.bio-final-section {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.bio-text-final {
  flex: 1.2;
  min-width: 280px;
}

.bio-text-final p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  font-size: 18px;
}

.bio-photo-right {
  flex: 1;
  min-width: 280px;
}

.bio-img-inferior-derecha {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
  transition: 0.4s ease;
}

.bio-img-inferior-derecha:hover {
  transform: scale(1.03);
}

/* ================= SHOW MUSICAL ================= */

.show-section {
  padding: 100px 60px;
  background: linear-gradient(
    180deg,
    #1a0505,
    #120202
  );
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px auto;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.section-intro {
  font-size: 18px;
  line-height: 1.9;
}

/* CONTENEDOR PRINCIPAL */
.show-item {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
  flex-wrap: wrap;
}

/* INVERSIÓN */
.show-item.reverse {
  flex-direction: row-reverse;
}

/* IMÁGENES */
.show-image {
  flex: 1;
  min-width: 280px;
}

.show-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
  transition: 0.4s ease;
}

.show-image img:hover {
  transform: scale(1.03);
}

/* TEXTO */
.show-text {
  flex: 1.2;
  min-width: 280px;
}

.show-text h3 {
  color: #ff2a2a;
  margin-bottom: 20px;
  font-size: 24px;
}

.show-text p {
  margin-bottom: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

/* LISTA */
.show-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.show-list li {
  margin-bottom: 10px;
  font-size: 18px;
}

/* BOTÓN */
.show-btn {
  text-align: center;
}
  /* ================= EVENTOS EN VIVO ================= */
.events-section {
  padding: 80px 5%;
  background: linear-gradient(
    180deg,
    #140404,
    #220707
  );
}
.events-section .section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 20px;
  color: #fff;
}

.events-section .section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #ccc;
}

.events-block {
  margin-bottom: 80px;
}

.block-title {
  font-size: 26px;
  margin-bottom: 30px;
  color: #ff2a2a; /* rojo principal de la web */
}

/* ================= FILA HORIZONTAL ================= */

.events-row {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;

  scrollbar-width: thin;
  scrollbar-color: #ff2a2a transparent;
}

/* Scroll minimalista */
.events-row::-webkit-scrollbar {
  height: 6px;
}

.events-row::-webkit-scrollbar-track {
  background: transparent;
}

.events-row::-webkit-scrollbar-thumb {
  background: #ff2a2a;
  border-radius: 10px;
}

/* ================= TARJETAS VIDEO ================= */

.video-card {
  min-width: 280px;
  height: 350px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  transition: 0.4s ease;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover elegante */
.video-card:hover {
  transform: scale(1.05);
}

/* ================= MUSIC / ÁLBUMES ================= */

.latest-album {
  padding: 100px 5%;
  background: linear-gradient(
    180deg,
    #140404,
    #220707
  );
  text-align: center;
}

.latest-album h2 {
  font-size: 38px;
  margin-bottom: 60px;
  color: #fff;
  text-shadow: 0 8px 30px rgba(255, 42, 42, 0.35);
  letter-spacing: 1px;
}

/* GRID DE ÁLBUMES */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* TARJETA SPOTIFY */
.album-info {
  background: rgba(255, 42, 42, 0.05);
  border: 1px solid rgba(255, 42, 42, 0.2);
  border-radius: 20px;
  padding: 15px;
  transition: 0.4s ease;
  backdrop-filter: blur(6px);
}

/* EFECTO HOVER */
.album-info:hover {
  transform: translateY(-8px);
  border: 1px solid rgba(255, 42, 42, 0.6);
  box-shadow: 0 20px 40px rgba(255, 42, 42, 0.25);
}

/* IFRAME SPOTIFY */
.album-info iframe {
  width: 100%;
  height: 380px;
  border-radius: 15px;
}

/* ================= CONTACTO ================= */

.contact-section {
  padding: 100px 60px;
  background: linear-gradient(
    180deg,
    #140404,
    #220707
  );
  color: #fff;
}

.contact-title {
  text-align: center;
  font-size: 42px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.contact-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.7);
  margin-bottom: 60px;
}

.contact-container {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
}

/* LADO IZQUIERDO */
.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.contact-info li {
  margin-bottom: 15px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

/* BOTÓN WHATSAPP */
.whatsapp-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37,211,102,0.5);
}

/* LADO DERECHO */
.contact-form {
  flex: 1;
  min-width: 320px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px 20px;
  border-radius: 15px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 10px rgba(255,42,42,0.4);
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

/* BOTÓN ENVIAR */
.contact-form button {
  padding: 15px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  background: linear-gradient(
    90deg,
    #8b0000,
    #ff2a2a
  );
  color: #fff;
  transition: 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255,42,42,0.4);
}

/* ================= BOTONES FLOTANTES ================= */

.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 999;
}

/* BOTÓN INDIVIDUAL */
.floating-buttons a {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(145deg, #1a0505, #220707);
  box-shadow:
    0 10px 25px rgba(0,0,0,0.6),
    0 0 15px rgba(255, 42, 42, 0.35);

  transition: 0.35s ease;
}

/* IMAGEN */
.floating-buttons img {
  width: 70%;
  height: auto;
  transition: 0.3s ease;
}

/* HOVER */
.floating-buttons a:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow:
    0 15px 35px rgba(0,0,0,0.8),
    0 0 25px rgba(255, 42, 42, 0.6);
}

/* EFECTO PULSO SUAVE WHATSAPP */
.floating-buttons a:first-child {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 42, 42, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(255, 42, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 42, 42, 0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }

  .floating-buttons a {
    width: 55px;
    height: 55px;
  }
}

/* ===========================
   📱 TABLETS (1024px)
=========================== */
@media (max-width: 1024px) {

  .header {
    padding: 20px 30px;
  }

  .section,
  .bio-section,
  .show-section,
  .serenatas-section,
  .contact-section {
    padding: 80px 40px;
  }

  .hero-media img:first-child {
    left: 40px;
    max-height: 95vh;
  }

  .hero-media img:last-child {
    right: 60px;
    width: 300px;
  }

  .show-item {
    gap: 40px;
  }

  .bio-top-content,
  .bio-final-section {
    gap: 40px;
  }
}


/* ===========================
   📱 CELULARES (768px)
=========================== */
@media (max-width: 768px) {

  /* HEADER */
  .header {
    padding: 15px 20px;
  }

  .logo {
    font-size: 18px;
  }

  .login {
    padding: 6px 12px;
    font-size: 14px;
  }

  /* HERO */
  .hero {
    height: 85vh;
  }

  .hero-media img:first-child {
    position: relative;
    left: auto;
    bottom: auto;
    max-height: 60vh;
    display: block;
    margin: 0 auto;
  }

  .hero-media img:last-child {
    position: relative;
    right: auto;
    bottom: auto;
    width: 220px;
    display: block;
    margin: 20px auto 0;
  }

  @media (max-width: 768px) {

  /* Oculta SOLO la imagen del artista */
  .hero-media img:first-child {
    display: none;
  }

  /* Mantiene visible el logo */
  .hero-media img:last-child {
    position: relative;
    display: block;
    margin: 60px auto 0;
    width: 330px;
  }
}

  /* SECCIONES */
  .section,
  .bio-section,
  .show-section,
  .serenatas-section,
  .contact-section {
    padding: 60px 20px;
  }

  .section-title,
  .bio-section h2,
  .contact-title {
    font-size: 28px;
  }

  /* OPTIONS */
  .options {
    padding: 30px 20px;
    height: 320px;
  }

  .option.active {
    flex: 0 0 280px;
  }

  /* GÉNEROS */
  .genre-list {
    gap: 20px;
  }

  .genre {
    width: 100%;
    max-width: 320px;
  }

  /* BIO */
  .bio-top-content,
  .bio-final-section,
  .show-item {
    flex-direction: column;
  }

  .show-item.reverse {
    flex-direction: column;
  }

  /* EVENTOS */
  .video-card {
    height: 250px;
  }

  /* ÁLBUMES */
  .album-grid {
    grid-template-columns: 1fr;
  }

  .album-info iframe {
    height: 320px;
  }

  /* CONTACTO */
  .contact-container {
    flex-direction: column;
  }

  .contact-form {
    min-width: 100%;
  }

  .contact-info {
    text-align: center;
  }

  .contact-info ul {
    padding: 0;
  }

}


/* ===========================
   📱 CELULARES PEQUEÑOS (480px)
=========================== */
@media (max-width: 480px) {

  .section-title,
  .bio-section h2,
  .latest-album h2 {
    font-size: 24px;
  }

  .serenatas-section p,
  .bio-text p,
  .bio-text-final p,
  .show-text p {
    font-size: 15px;
  }

  .btn-primary,
  .contact-form button,
  .whatsapp-btn {
    width: 100%;
    text-align: center;
  }

  .floating-buttons {
    bottom: 15px;
    right: 15px;
  }

  .floating-buttons a {
    width: 50px;
    height: 50px;
  }

}