/* RESET ==================================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  background: #050509;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* GLOBAL SECTIONS ========================================*/
.section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  padding: 3rem 1.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
  transition: transform .4s ease;
  will-change: transform;
}

.section.over { z-index: 5; }
.section.under { z-index: 1; }

/* HERO ====================================================*/
.hero-section {
  background: url('mobile-maleja.png') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 100vh;
  padding-bottom: 4rem;
  position: relative;
}

/* DEGRADADO NEGRO EN EL BOTTOM */
.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #050509 100%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero-section {
    background: url('desktop-maleja.png') center/cover no-repeat;
  }
}

.hero-content {
  width: 100%;
  text-align: center;
  position: relative;
  padding: 0 1.7rem;
  z-index: 10;
}

/* TEXTOS HERO ============================================*/
.hero-title {
  font-size: 2.8rem;
  letter-spacing: 3.5px;
  font-family: 'Space Grotesk';
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 4px 18px rgba(0,0,0,.9);
}

.hero-sub {
  margin-top: .6rem;
  opacity: .9;
  font-size: 1.1rem;
  text-shadow: 0 3px 12px rgba(0,0,0,.8);
}

/* BOTONES HERO ===========================================*/
.hero-btns {
  margin-top: 2.4rem;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: .25s ease;
  box-shadow: 0 0 18px rgba(0,0,0,0.4);
}

/* BOTÓN PRINCIPAL */
.primary {
  background: linear-gradient(135deg, #ff48a5, #852a68);
  box-shadow: 0 6px 18px rgba(255,0,150,0.25);
}

.primary:hover {
  filter: brightness(1.22);
  transform: scale(1.06);
}

/* BOTÓN SECUNDARIO */
.secondary {
  background: rgba(255,255,255,0.05);
}

.secondary:hover {
  background: rgba(255,255,255,0.12);
  transform: scale(1.06);
}

/* TOUR SECTION ===========================================*/
.tour-section {
  background: #08080d;
  padding: 6rem 1.8rem;
}

/* HEADER */
.tour-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tour-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0,0,0,0.8);
  margin-bottom: 0.8rem;
}

.tour-header p {
  font-size: 1.2rem;
  color: #d4d4d4;
  opacity: 0.9;
  line-height: 1.6;
}

/* GRID ================================================*/
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* CARD =================================================*/
.tour-card {
  background: radial-gradient(circle at 30% 15%, #1a1a25, #0c0c13 70%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 3.2rem 2.4rem;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.6), 0 0 32px rgba(255, 0, 150, 0.06);
  transition: .35s ease;
}

.tour-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 42px rgba(0,0,0,0.7), 0 0 45px rgba(255, 0, 160, 0.18);
  border-color: rgba(255,0,160,.3);
}

/* FECHA */
.tour-date {
  width: 130px;
  height: 130px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .35rem;
  backdrop-filter: blur(4px);
  box-shadow: inset 0 0 30px rgba(0,0,0,.4);
}

.tour-date .day {
  font-size: 3.4rem;
  font-weight: 700;
}

.tour-date .month {
  font-size: 1.2rem;
  letter-spacing: 3px;
  opacity: .85;
}

/* INFO */
.tour-info h3 {
  font-size: 1.65rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: .4rem;
}

.venue {
  font-size: 1.1rem;
  color: #cacaca;
  margin-bottom: 1rem;
}

.desc {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #e2e2e2;
  max-width: 480px;
  opacity: .9;
  margin-bottom: 1.4rem;
}

/* BOTÓN */
.tour-btn {
  background: linear-gradient(135deg, #ff4ea5, #9e2d6b);
  padding: 1rem 2.6rem;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: .25s ease;
  box-shadow: 0 5px 22px rgba(255, 0, 150, 0.22);
}

.tour-btn:hover {
  transform: scale(1.08);
  filter: brightness(1.18);
}
















.music-section {
  background: #08080d;
  padding: 5rem 1.8rem;
}

.music-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.music-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: .7rem;
}

.music-header p {
  font-size: 1.05rem;
  color: #d4d4d4;
  opacity: 0.85;
  line-height: 1.6;
}

.music-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* REPRODUCTOR PRINCIPAL */
.music-player {
  background: radial-gradient(circle at top, #14141f, #0b0b12);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 0 32px rgba(255,0,160,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.player-cover {
  width: 210px;
  height: 210px;
  border-radius: 22px;
  overflow: hidden;
  background: #181822;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TÍTULO CON MARQUEE */
.track-title-wrapper {
  width: 100%;
  max-width: 340px;
  overflow: hidden;
  position: relative;
  margin: 0 auto .4rem auto;
  height: 30px;
}

.track-title {
  white-space: nowrap;
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
}

.track-title.marquee {
  animation: marqueeSlide 12s linear infinite;
}

@keyframes marqueeSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.player-artist {
  font-size: 1rem;
  color: #f5f5f5;
  opacity: .9;
  margin-bottom: .1rem;
  text-align: center;
}

.player-album {
  font-size: .95rem;
  color: #bbbbbb;
  margin-bottom: .3rem;
  text-align: center;
}

.player-plays {
  font-size: .9rem;
  color: #9f9f9f;
  text-align: center;
}

.player-plays span {
  font-weight: 600;
  color: #ff4ea5;
}

/* PROGRESO */
.player-progress {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .9rem;
}

.time-label {
  font-size: .85rem;
  color: #bcbcbc;
  display: inline-block;
  width: 42px;   /* 👈 evita que cambie el ancho */
  text-align: left;
}


#progress-bar {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4ea5, #c02a75);
  outline: none;
  cursor: pointer;
}

#progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(255,0,160,0.7);
}

#progress-bar::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(255,0,160,0.7);
}

/* CONTROLES */
.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  margin-top: .5rem;
}

.control-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: #ffffff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .25s ease;
}

.control-btn--main {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff4ea5, #c02a75);
  box-shadow: 0 0 18px rgba(255,0,160,0.4);
  border: none;
  font-size: 1.25rem;
}

.control-btn:hover {
  transform: scale(1.06);
  border-color: rgba(255,255,255,0.3);
}

.control-btn--main:hover {
  transform: scale(1.08);
  filter: brightness(1.08);
}

/* SIDEBAR: ÁLBUMES + PLAYLIST */
.music-sidebar {
  background: radial-gradient(circle at top, #11111a, #080811);
  border-radius: 24px;
  padding: 2.3rem 2rem 2.4rem;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 0 30px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ÁLBUMES */
.album-selector h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: .7rem;
}

.album-list {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.album-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  transition: .2s ease;
  font-size: .9rem;
}

.album-pill img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.album-pill span {
  white-space: nowrap;
}

.album-pill small {
  color: #a8a8a8;
  font-size: .8rem;
}

.album-pill:hover {
  background: rgba(255,78,165,0.25);
}

.album-pill.active {
  background: linear-gradient(135deg, #ff4ea5, #c02a75);
  color: #ffffff;
}

/* PLAYLIST */
.playlist-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: .2rem;
}

#playlist-album-name {
  font-size: .95rem;
  color: #bdbdbd;
  margin-bottom: 1.2rem;
}

.playlist-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  max-height: 300px;
  overflow-y: auto;
}

.playlist-item {
  padding: .7rem .9rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: .2s ease;
  font-size: .95rem;
}

.playlist-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-item small {
  color: #a7a7a7;
  margin-left: .7rem;
  font-size: .8rem;
}

.playlist-item:hover {
  background: rgba(255,78,165,0.20);
}

.playlist-item.active {
  background: linear-gradient(135deg, #ff4ea5, #c02a75);
  color: #ffffff;
}

/* RESPONSIVE */
/* =========================================================
   RESPONSIVE GLOBAL — ARREGLO DE OVERFLOW EN MÓVIL
   ========================================================= */
* {
  max-width: 100%;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}
/* =========================================================
   DESKTOP — layout en dos columnas real
   ========================================================= */
@media (min-width: 1100px) {

  .music-wrapper {
    display: grid !important;
    max-width: 1400px;
    margin: 0 auto;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr) !important;
    align-items: start;
    gap: 3rem;
  }

  /* Ajuste de tamaños internos para coherencia visual */
  .music-player {
    width: 100%;
    border-radius: 26px;
  }

  .music-sidebar {
    width: 100%;
    border-radius: 26px;
  }
}

/* =========================================================
   MÓVIL — ancho reducido
   ========================================================= */
@media (max-width: 480px) {

  .music-section {
    padding: 3.5rem 1.2rem;
  }

  .music-header h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .music-header p {
    font-size: .95rem;
  }

  /* WRAPPER */
  .music-wrapper {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  /* PLAYER */
  .music-player {
    padding: 2rem 1.4rem;
    border-radius: 18px;
  }

  .player-cover {
    width: 170px;
    height: 170px;
  }

  .track-title-wrapper {
    max-width: 260px;
    height: 26px;
  }

  .track-title {
    font-size: 1.15rem;
  }

  /* PROGRESO */
  .player-progress {
    gap: .5rem;
    grid-template-columns: 42px 1fr 42px;
  }

  #progress-bar {
    height: 5px;
  }

  /* CONTROLES */
  .control-btn {
    width: 40px;
    height: 40px;
  }

  .control-btn--main {
    width: 54px;
    height: 54px;
  }

  /* SIDEBAR */
  .music-sidebar {
    padding: 1.8rem 1.3rem 2rem;
    border-radius: 18px;
  }

  .album-pill {
    padding: .45rem .75rem;
    font-size: .85rem;
  }

  .playlist-item {
    padding: .6rem .7rem;
    font-size: .9rem;
  }
}

/* =========================================================
   TABLET — 480px a 768px
   ========================================================= */
@media (max-width: 768px) {
  .music-wrapper {
    grid-template-columns: 1fr !important;
    gap: 2.2rem;
  }

  .music-player {
    width: 100%;
  }

  .player-cover {
    width: 190px;
    height: 190px;
  }

  .music-sidebar {
    width: 100%;
  }
}

/* =========================================================
   SMALL DESKTOP — 768px a 1100px
   ========================================================= */
@media (min-width: 768px) and (max-width: 1100px) {
  .music-wrapper {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
  }

  .player-cover {
    width: 220px;
    height: 220px;
  }
}

/* =========================================================
   DESKTOP GRANDE — para pantallas amplias
   ========================================================= */
@media (min-width: 1100px) {
  .music-wrapper {
    max-width: 1400px;
    gap: 3rem;
  }

  .music-player {
    border-radius: 26px;
  }

  .music-sidebar {
    border-radius: 26px;
  }
}
/* =========================================================
   FRANJA INFERIOR REPRODUCTOR: ACCIONES + CONTROLES
   ========================================================= */
.player-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.player-actions {
  display: flex;
  align-items: center;
  gap: .6rem;
}

/* Botones pequeños de icono */
.icon-btn {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.02);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: .9rem;
  transition: .2s ease;
}

.icon-btn:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

/* Corazón con badge de likes */
.icon-btn--like i {
  color: #ff4ea5;
}

.icon-btn--like.liked i {
  transform: scale(1.15);
}

.icon-badge {
  position: absolute;
  bottom: -6px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #ff4ea5;
  color: #fff;
  font-size: .65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  box-shadow: 0 0 10px rgba(255,0,160,0.6);
}

/* LOOP: estilos según data-mode */
.icon-btn--loop[data-mode="none"] {
  opacity: .5;
}

.icon-btn--loop[data-mode="track"] {
  opacity: 1;
  box-shadow: 0 0 12px rgba(255,0,160,0.5);
}

.icon-btn--loop[data-mode="album"] {
  opacity: 1;
}

/* Badge visual opcional para modo track (pequeño punto) */
.icon-btn--loop[data-mode="track"]::after {
  content: "1";
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff4ea5;
  color: #fff;
  font-size: .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive: en móvil íconos encima y controles debajo */
@media (max-width: 480px) {
  .player-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .player-actions {
    order: 1;
  }

  .player-controls {
    order: 2;
  }
}

/* =========================================================
   BOTÓN DE VOLUMEN + SLIDER FLOTANTE ESTILO PREMIUM
   ========================================================= */

/* CONTENEDOR GENERAL */
.volume-wrapper {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

/* BOTÓN */
.volume-btn {
  position: relative;
  z-index: 20;
}

/* SLIDER (DEBAJO DEL BOTÓN, ANCHO FIJO GARANTIZADO) */
.volume-slider-container {
  position: absolute;
  top: 100%;                  /* SIEMPRE DEBAJO DEL BOTÓN */
  left: 50%;
  transform: translateX(-50%) scaleY(0.85);

  width: 160px;               /* ANCHO FIJO REAL */
  min-width: 160px;
  max-width: 160px;

  height: 55px;
  padding: 12px 18px;

  background: rgba(20,20,28,0.98);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(0,0,0,0.45);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transform-origin: top;
  transition: opacity .22s ease, transform .22s ease;
}

/* MOSTRAR EL SLIDER */
.volume-wrapper:hover .volume-slider-container,
.volume-slider-container:hover {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) scaleY(1);
}

/* SLIDER INTERNO */
#volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff4ea5, #c02a75);
  outline: none;
  cursor: pointer;
}

/* THUMB — PUNTITO */
#volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 10px rgba(255,0,160,0.7);
}

#volume-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 10px rgba(255,0,160,0.7);
}


/* SECCIÓN GENERAL */
.videos-section {
  background: #07070c;
  padding: 5rem 1.8rem;
}

.videos-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.videos-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.7rem;
  letter-spacing: 1.5px;
  margin-bottom: .7rem;
}

.videos-header p {
  color: #cfcfcf;
  opacity: .85;
  font-size: 1.1rem;
}

/* VIDEO PRINCIPAL DESTACADO */
.video-featured {
  background: radial-gradient(circle at top, #14141c, #0a0a10);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 35px rgba(255,0,160,0.12);
  margin-bottom: 3rem;
}

.video-featured-thumb {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}

.video-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s ease;
}

.video-featured:hover .video-featured-thumb img {
  transform: scale(1.08);
  filter: brightness(1.15);
}

/* Overlay Play */
.video-featured-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .25s ease;
}

.video-featured-overlay i {
  font-size: 3rem;
  color: #fff;
}

.video-featured:hover .video-featured-overlay {
  opacity: 1;
}

.video-featured-info {
  padding: 1.6rem 1.4rem 2rem;
  text-align: center;
}

.video-featured-info h3 {
  font-size: 1.7rem;
  margin-bottom: .6rem;
}

.video-featured-info p {
  font-size: 1.05rem;
  color: #d2d2d2;
  opacity: .85;
}

/* LISTA DE VIDEOS SECUNDARIOS */
.videos-list {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}

/* ITEM */
.video-list-item {
  display: flex;
  gap: 1.3rem;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: .25s ease;
}

.video-list-item:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}

/* MINIATURA */
.video-list-thumb {
  width: 130px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.video-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .25s ease;
}

.video-list-item:hover .video-list-thumb img {
  transform: scale(1.1);
}

.video-list-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .25s ease;
}

.video-list-overlay i {
  font-size: 1.5rem;
  color: #fff;
}

.video-list-item:hover .video-list-overlay {
  opacity: 1;
}

/* TEXTO */
.video-list-info {
  flex: 1;
}

.video-list-info h4 {
  font-size: 1.2rem;
  margin-bottom: .4rem;
}

.video-list-info p {
  color: #bfbfbf;
  font-size: .95rem;
  opacity: .8;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .video-list-item {
    flex-direction: column;
  }

  .video-list-thumb {
    width: 100%;
    height: 180px;
  }
}


.links-section {
  background: #06060b;
  padding: 5rem 1.8rem;
}

.links-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.links-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.links-header p {
  color: #cfcfcf;
  font-size: 1.05rem;
  opacity: .85;
}

.links-wrapper {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

/* BOTÓN GENERAL */
.link-btn {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 1rem;

  padding: 1.1rem 1.4rem;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);

  transition: .25s ease;
}

/* ANIMACIÓN HOVER */
.link-btn:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,0,160,0.25);
  box-shadow: 0 0 20px rgba(255,0,160,0.18);
}

/* ICONO GENERAL */
.link-btn i {
  font-size: 1.5rem;
}

/* ESTILOS POR RED SOCIAL */
.instagram { border-left: 4px solid #d6249f; }
.youtube    { border-left: 4px solid #ff0000; }
.spotify    { border-left: 4px solid #1ed760; }
.facebook   { border-left: 4px solid #1877f2; }
.tiktok     { border-left: 4px solid #00f2ea; }

/* RESPONSIVE */
@media (max-width: 480px) {
  .link-btn {
    font-size: 1.05rem;
    padding: 1rem 1.1rem;
  }

  .link-btn i {
    font-size: 1.3rem;
  }
}
/* PRENSA & ARTÍCULOS ============================= */
.press-section {
  background: #05050a;
  padding: 5rem 1.8rem;
}

.press-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem auto;
}

.press-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 1.4px;
  margin-bottom: 0.7rem;
}

.press-header p {
  color: #d0d0d0;
  opacity: 0.85;
  font-size: 1.05rem;
}

/* GRID */
.press-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
}

/* CARD */
.press-card {
  background: radial-gradient(circle at top, #161621, #090910);
  border-radius: 20px;
  padding: 1.8rem 1.6rem 1.7rem;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: .28s ease;
}

.press-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,0,160,0.35);
  box-shadow: 0 0 30px rgba(255,0,160,0.18);
}

/* META */
.press-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .3rem;
  font-size: .85rem;
  color: #b7b7b7;
}

.press-tag {
  padding: .25rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.press-date {
  opacity: .8;
}

/* TÍTULO Y TEXTO */
.press-card h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: .3rem;
}

.press-card p {
  font-size: .95rem;
  color: #cecece;
  opacity: .9;
  line-height: 1.6;
}

/* LINK */
.press-link {
  margin-top: .8rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .95rem;
  color: #ff4ea5;
  text-decoration: none;
  font-weight: 500;
}

.press-link i {
  font-size: .85rem;
  transform: translateX(0);
  transition: transform .2s ease;
}

.press-card:hover .press-link i {
  transform: translateX(4px);
}

/* RESPONSIVE PEQUEÑO */
@media (max-width: 480px) {
  .press-section {
    padding: 4rem 1.3rem;
  }

  .press-header h2 {
    font-size: 2.1rem;
  }
}
/* SECCIÓN MERCH */
.merch-section {
  background: #06060b;
  padding: 5rem 1.8rem;
}

.merch-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.merch-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  margin-bottom: .6rem;
  letter-spacing: 1px;
}

.merch-header p {
  font-size: 1.05rem;
  color: #cfcfcf;
  opacity: .85;
}

/* GRID */
.merch-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 2.5rem;
}

/* ITEM */
.merch-item {
  background: radial-gradient(circle at top, #171722, #0a0a10);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0,0,0,0.6);
  transition: .3s ease;
}

.merch-item:hover {
  transform: translateY(-7px);
  border-color: rgba(255,0,160,0.3);
  box-shadow: 0 0 35px rgba(255,0,160,0.15);
}

/* IMAGEN */
.merch-thumb {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.merch-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s ease;
}

.merch-item:hover .merch-thumb img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* TEXTO */
.merch-info {
  padding: 1.5rem;
  text-align: center;
}

.merch-info h3 {
  font-size: 1.4rem;
  margin-bottom: .4rem;
}

.merch-info p {
  color: #c8c8c8;
  opacity: .9;
  margin-bottom: 1rem;
  font-size: .95rem;
}

/* BOTÓN */
.merch-btn {
  display: inline-block;
  padding: .8rem 1.6rem;
  border-radius: 40px;
  background: linear-gradient(135deg,#ff4ea5,#c02a75);
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  transition: .25s ease;
}

.merch-btn:hover {
  transform: scale(1.07);
  filter: brightness(1.15);
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .merch-thumb {
    height: 200px;
  }
}
/* PRECIOS */
.merch-prices {
  margin: 1rem 0 .8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 1rem;
}

.new-price {
  color: #ff4ea5;
  font-weight: 700;
  font-size: 1.3rem;
}

/* ACCIONES */
.merch-actions {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  align-items: center;
}

.merch-btn {
  display: inline-block;
  padding: .75rem 1.6rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: .3s ease;
  width: 180px;
  text-align: center;
}

/* VER DETALLES (siempre visible) */
.merch-btn.details {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}

.merch-btn.details:hover {
  background: rgba(255,255,255,0.15);
}

/* AGREGAR AL CARRITO (solo en hover) */
.merch-btn.add-cart {
  background: linear-gradient(135deg,#ff4ea5,#c02a75);
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.merch-item:hover .merch-btn.add-cart {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.merch-btn.add-cart:hover {
  filter: brightness(1.15);
  transform: scale(1.06);
}
/* ======================= SPONSORS SECTION ======================= */
.sponsors-section {
  padding: 5rem 1.8rem;
  background: #08080d;
}

.sponsors-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.sponsors-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: .8rem;
}

.sponsors-header p {
  font-size: 1.15rem;
  color: #d4d4d4;
  opacity: 0.85;
  line-height: 1.55;
}

/* GRID */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.8rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* CARD */
.sponsor-card {
  background: radial-gradient(circle at top, #13131c, #0b0b12);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 2.4rem 2rem;
  text-align: center;
  transition: .3s ease;
  box-shadow: 0 0 25px rgba(0,0,0,0.45);
}

.sponsor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(255,0,160,0.18);
  border-color: rgba(255,0,160,0.25);
}

/* LOGO */
.sponsor-logo {
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  margin: 0 auto 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.sponsor-logo img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.25));
}

/* TEXT */
.sponsor-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: .5rem;
}

.sponsor-card p {
  font-size: 1rem;
  color: #cfcfcf;
  line-height: 1.45;
  opacity: 0.9;
}


/* FOOTER ================================ */
.main-footer {
  background: #050509;
  padding: 4.5rem 1.8rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

/* Glow top separator */
.main-footer::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 45px;
  background: radial-gradient(circle at top, rgba(255,0,150,0.28), transparent 70%);
  filter: blur(22px);
  pointer-events: none;
}

/* GRID PRINCIPAL */
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

/* BRAND */
.footer-brand img {
  width: 115px;                      /* 🔥 Logo más equilibrado */
  margin-bottom: 1rem;
  opacity: .95;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.08));
}

.footer-brand p {
  color: #cdcdcd;
  font-size: .95rem;
  line-height: 1.5;
  max-width: 320px;
  opacity: .85;
}

/* TITULOS */
.main-footer h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: "Space Grotesk";
  letter-spacing: .5px;
  color: #ffffff;
}

/* LINKS */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: .7rem;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;              /* 🔥 Removes underline permanently */
  font-size: .95rem;
  transition: .25s ease;
  padding-bottom: 2px;
  display: inline-block;
}

.footer-links a:hover {
  color: #ff4ea5;
  transform: translateX(4px);
}

/* CONTACTO */
.footer-contact p {
  color: #d0d0d0;
  font-size: .95rem;
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: .55rem;
  color: #ff4ea5;
  font-size: 1.05rem;
}

/* SOCIAL ICONS */
.footer-social .social-icons {
  display: flex;
  gap: .9rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05); /* 🔥 Más limpio */
  color: white;
  font-size: 1.15rem;
  transition: .3s ease;
  border: 1px solid rgba(255,255,255,0.06);
}

.footer-social a:hover {
  background: linear-gradient(135deg, #ff4ea5, #c02a75);
  transform: translateY(-4px) scale(1.12);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(255,0,150,0.25);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  color: #b8b8b8;
  font-size: .9rem;
  letter-spacing: .3px;
}

/* RESPONSIVE */
@media (max-width: 480px) {

  .main-footer {
    padding: 3.3rem 1.4rem 2rem;
  }

  .footer-social .social-icons {
    justify-content: center;
  }

  .footer-brand img {
    width: 105px;                   /* 🔥 más compacto en móvil */
  }

  .footer-top {
    gap: 2.2rem;
  }
}
/* BANNER FIJO DE EJEMPLO — NEON DARK THEME */
.example-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background: rgba(10, 10, 16, 0.92);
  border-top: 1px solid rgba(255, 0, 150, 0.25);

  text-align: center;
  z-index: 9999;

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow: 0 -4px 20px rgba(255, 0, 150, 0.15);

  animation: neonPulse 2.8s infinite ease-in-out;
}

.example-banner p {
  margin: 0;
  font-size: 1rem;
  color: #ff4ea5;
  font-weight: 600;
  letter-spacing: 1.4px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: .6rem;
  font-family: "Space Grotesk", sans-serif;
}

.example-banner i {
  font-size: 1.1rem;
  color: #ff70c7;
  text-shadow: 0 0 10px rgba(255,0,150,0.8);
}

/* ANIMACIÓN DE PULSO NEÓN */
@keyframes neonPulse {
  0%   { box-shadow: 0 -4px 20px rgba(255, 0, 150, 0.20); }
  50%  { box-shadow: 0 -4px 25px rgba(255, 0, 150, 0.45); }
  100% { box-shadow: 0 -4px 20px rgba(255, 0, 150, 0.20); }
}

/* RESPONSIVE */
@media(max-width: 480px) {
  .example-banner p {
    font-size: .9rem;
    letter-spacing: 1px;
  }
}
