/* CONFIGURACIONES GENERALES */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: #000000;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #000000;
  color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 25px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.logo img {
  height: 75px; 
  width: auto;
  object-fit: contain;
  display: block;
}

nav {
  display: flex;
  gap: 40px;
}

nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav a:hover {
  color: #ff2d2d;
  text-shadow: 0 0 10px rgba(255, 45, 45, 0.4);
}

/* BOTÓN HAMBURGUESA */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.menu-btn span {
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

/* MENU MOVIL */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  transition: 0.3s;
}

.mobile-menu a:hover {
  color: #ff2d2d;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slider, .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.slide {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(35%) contrast(110%);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 60%, #000000 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-tag {
  color: #ff2d2d;
  letter-spacing: 6px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(60px, 10vw, 130px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.9;
  margin: 10px 0;
}

.hero p {
  font-size: clamp(18px, 3vw, 26px);
  color: #e0e0e0;
  font-weight: 400;
  letter-spacing: 1px;
}

.hero-line {
  width: 80px;
  height: 4px;
  background: #ff2d2d;
  margin: 30px auto;
}

.hero-description {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.7;
  color: #b3b3b3;
  font-weight: 300;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

/* BOTONES PREMIUM */
.btn {
  padding: 18px 38px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  transition: all 0.3s ease;
}

.primary {
  background: #ff2d2d;
  color: white;
  box-shadow: 0 4px 20px rgba(255, 45, 45, 0.3);
}

.primary:hover {
  background: #e02020;
  transform: translateY(-3px);
}

.secondary {
  border: 2px solid rgba(255,255,255,0.8);
  color: white;
}

.secondary:hover {
  background: white;
  color: black;
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 20px;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* EXPERIENCE / CARD PILARES */
.experience {
  padding: 100px 8%;
  background: #050505;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.experience-card {
  background: #0c0c0c;
  padding: 50px 40px;
  border-left: 3px solid #1a1a1a;
  transition: all 0.4s ease;
}

.experience-card:hover {
  border-left-color: #ff2d2d;
  background: #121212;
  transform: scale(1.02);
}

.card-num {
  font-size: 14px;
  color: #ff2d2d;
  font-weight: 800;
  margin-bottom: 15px;
}

.experience-card h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
}

.experience-card p {
  color: #8c8c8c;
  line-height: 1.7;
  font-size: 14px;
}

/* SECCIONES COMUNES */
.section {
  padding: 140px 8%;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title .sub {
  font-size: 12px;
  letter-spacing: 5px;
  color: #ff2d2d;
  font-weight: 800;
  display: block;
  margin-bottom: 15px;
}

.section-title h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
}

/* FILOSOFIA */
.filosofia-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.filosofia-text h2 {
  font-size: 45px;
  font-weight: 900;
  margin: 15px 0 25px 0;
  line-height: 1.1;
}

.accent-bar {
  width: 60px;
  height: 4px;
  background: #ff2d2d;
  margin-bottom: 30px;
}

.filosofia-text p {
  color: #a6a6a6;
  line-height: 1.8;
  margin-bottom: 20px;
}

.filosofia-image {
  position: relative;
}

.filosofia-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  filter: grayscale(30%);
}

.img-border-accent {
  position: absolute;
  border: 2px solid #ff2d2d;
  inset: 15px -15px -15px 15px;
  z-index: -1;
}

/* WHY / PILARES DE NEGOCIO */
.why {
  padding: 100px 8%;
  background: #080808;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.strong-card {
  background: #0b0b0b !important;
  border: 1px solid #161616;
  padding: 50px 35px !important;
  transition: all 0.4s ease;
}

.strong-card:hover {
  background: #111111 !important;
  border-color: #ff2d2d;
  transform: translateY(-8px);
}

.card-icon {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 25px;
  display: inline-block;
}

.strong-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
}

.strong-card p {
  font-size: 14px;
  color: #999999;
  line-height: 1.7;
}

/* DISCOSUR MULTIMEDIA PLATFORM */
.media-section {
  padding: 120px 8%;
  background: linear-gradient(to bottom, #000000, #050505);
  border-bottom: 1px solid #111;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.media-card {
  background: #0a0a0a;
  border: 1px solid #141414;
  padding: 60px 40px;
  border-radius: 6px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.media-card:hover {
  transform: translateY(-5px);
  border-color: #ff2d2d;
  box-shadow: 0 15px 35px rgba(255, 45, 45, 0.05);
}

.media-icon {
  font-size: 45px;
  color: #ffffff;
  margin-bottom: 25px;
  transition: color 0.3s;
}

.media-card:hover .media-icon {
  color: #ff2d2d;
}

.media-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
}

.media-card p {
  font-size: 14px;
  color: #8c8c8c;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 35px;
}

.media-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: #ff2d2d;
  color: white;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.media-btn-link:hover {
  background: #ffffff;
  color: #000000;
}

/* STATS */
.stats {
  display: flex;
  justify-content: space-around;
  padding: 100px 8%;
  background: #050505;
}

.stat h2 {
  font-size: clamp(45px, 6vw, 75px);
  font-weight: 900;
}

.stat p {
  color: #ff2d2d;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 12px;
}

/* ARTISTAS ROSTER (ALTURA MÁXIMA 95VH) */
.artists-section {
  background: #000000;
  padding-bottom: 60px;
}

.section-title-clean {
  padding: 80px 8% 40px 8%;
}

.section-title-clean h2 {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 8px;
  border-bottom: 2px solid #ff2d2d;
  display: inline-block;
  padding-bottom: 15px;
}

.artist-full {
  position: relative;
  height: 95vh; /* Fotos masivas e imponentes */
  overflow: hidden;
  border-bottom: 1px solid #141414;
}

.artist-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(45%) grayscale(20%);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.artist-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 80px 8%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 15%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.95) 95%);
  z-index: 2;
}

.artist-overlay h2 {
  font-size: clamp(45px, 8vw, 95px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 0.9;
}

.artist-overlay p {
  margin-top: 20px;
  margin-bottom: 30px;
  max-width: 650px;
  line-height: 1.8;
  font-size: 17px;
  color: #cccccc;
}

.artist-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.artist-link-btn i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.artist-link-btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.artist-link-btn:hover i {
  transform: translate(2px, -2px);
}

.artist-full:hover img {
  transform: scale(1.02);
  filter: brightness(55%) grayscale(0%);
}

.artist-full:hover .artist-overlay h2 {
  color: #ff2d2d;
}

/* LANZAMIENTOS */
.release {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.release-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(20%) blur(2px);
}

.release-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 20%, #000000 100%);
}

.release-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.badge {
  background: #ff2d2d;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
}

.release-content h2 {
  font-size: clamp(45px, 7vw, 85px);
  font-weight: 900;
  margin-top: 25px;
}

.release-content h3 {
  color: #ff2d2d;
  font-size: 24px;
  letter-spacing: 2px;
}

.release-content p {
  max-width: 600px;
  margin: 25px auto 40px auto;
  line-height: 1.8;
  color: #b3b3b3;
}

/* DEMO FORM */
.demo {
  background: #000000;
}

.demo-container {
  max-width: 900px;
  margin: 0 auto;
}

.demo-text {
  font-size: 16px;
  color: #8c8c8c;
  margin-top: 15px;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.demo-form input,
.demo-form textarea {
  background: #0a0a0a;
  border: 1px solid #1f1f1f;
  padding: 22px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.demo-form input:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: #ff2d2d;
  background: #111111;
}

.demo-form textarea {
  height: 160px;
  resize: none;
}

.demo-form button {
  background: #ff2d2d;
  border: none;
  padding: 22px;
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.demo-form button:hover {
  background: #ffffff;
  color: #000000;
}

/* FOOTER */
footer {
  padding: 100px 8% 60px 8%;
  background: #050505;
  border-top: 1px solid #111;
  text-align: center;
}

footer img {
  height: 90px; 
  width: auto;
  margin-bottom: 25px;
  object-fit: contain;
}

footer p {
  color: #666666;
  font-size: 14px;
  margin-bottom: 35px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 45px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff2d2d;
}

.copyright {
  color: #333333;
  font-size: 11px;
  letter-spacing: 2px;
}

/* ============================================================
   ESTILOS EXCLUSIVOS PARA SUBPÁGINAS DE REPRODUCTORES (MEDIA)
   ============================================================ */
.media-player-body {
  background: #000000;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.player-nav {
  position: relative !important;
  background: #050505 !important;
  padding: 15px 5% !important;
  border-bottom: 1px solid #111;
}

/* Contenedor Radio */
.player-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: radial-gradient(circle at center, #0c0a0a 0%, #000000 100%);
}

.player-box {
  background: #050505;
  border: 1px solid #161616;
  padding: 50px 40px;
  border-radius: 8px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.live-badge {
  background: rgba(255, 45, 45, 0.1);
  border: 1px solid #ff2d2d;
  color: #ff2d2d;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.live-badge .dot {
  width: 6px;
  height: 6px;
  background: #ff2d2d;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.4; }
  100% { transform: scale(0.9); opacity: 1; }
}

.station-info h1 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.station-info p {
  color: #666;
  font-size: 14px;
  margin-top: 5px;
}

.audio-visualizer-placeholder {
  margin: 40px 0;
  font-size: 65px;
  color: rgba(255, 255, 255, 0.05);
}

.wave-anim {
  color: #ff2d2d;
  text-shadow: 0 0 30px rgba(255, 45, 45, 0.3);
}

.audio-player-wrapper audio {
  width: 100%;
  outline: none;
}

.player-tip {
  color: #444;
  font-size: 12px;
  margin-top: 25px;
}

/* Contenedor TV / IPTV */
.video-player-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #000;
}

.video-wrapper {
  flex: 1;
  position: relative;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-footer-info {
  background: #050505;
  padding: 25px 5%;
  border-top: 1px solid #111;
}

.video-footer-info h2 {
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 15px;
}

.video-footer-info p {
  color: #666;
  font-size: 14px;
  margin-top: 5px;
}

/* RESPONSIVE SUBPÁGINAS */
@media(max-width: 992px) {
  nav { display: none; }
  .menu-btn { display: flex; }
  .navbar { padding: 15px 5%; }
  .logo img { height: 60px; }
  
  .experience-grid, .filosofia-grid, .why-grid, .media-grid {
    grid-template-columns: 1fr;
  }
  .form-row { grid-template-columns: 1fr; }
  .artist-full { height: 80vh; }
  .artist-overlay { padding: 50px 6%; }
}

@media(max-width: 600px) {
  .artist-full { height: 75vh; }
  .footer-links { flex-direction: column; gap: 20px; }
  .video-footer-info h2 { flex-direction: column; align-items: flex-start; gap: 10px; }
}

.menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 5px); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }