/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#0a0a0a;
color:#fff;
overflow-x:hidden;
padding-top:75px;
}

/* ================= HEADER ================= */
.header{
position:fixed;
top:0;
left:0;
width:100%;
height:75px;
background:#000;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 30px;
border-bottom:3px solid #ff0000;
z-index:99999;
}

.logo img{
height:50px;
width:auto;
}

/* MENU DESKTOP */
nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav ul li a{
color:#fff;
text-decoration:none;
font-weight:600;
font-size:14px;
letter-spacing:.5px;
}

nav ul li a:hover{
color:#ff0000;
}

/* ================= SLIDER ================= */
.slider{
width:100%;
height:550px;
position:relative;
overflow:hidden;
background:#000;
margin-top:0;
}

.slides{
width:100%;
height:100%;
position:relative;
}

.slides img{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:contain;
background:#000;
opacity:0;
transition:opacity 1.2s ease-in-out;
}

.slides img.active{
opacity:1;
}

/* ================= PLAYER ================= */
.floating-player{
position:fixed;
bottom:20px;
right:20px;
background:rgba(0,0,0,.90);
backdrop-filter:blur(10px);
border:2px solid #ff0000;
padding:12px 18px;
border-radius:15px;
display:flex;
align-items:center;
gap:15px;
z-index:999999;
box-shadow:0 0 20px rgba(255,0,0,.4);
}

.player-left{
display:flex;
align-items:center;
gap:10px;
}

.live-dot{
width:12px;
height:12px;
background:red;
border-radius:50%;
animation:pulse 1s infinite;
}

@keyframes pulse{
0%{transform:scale(1);opacity:1;}
50%{transform:scale(1.5);opacity:.4;}
100%{transform:scale(1);opacity:1;}
}

.player-controls button{
background:#ff0000;
color:#fff;
border:none;
padding:10px 18px;
border-radius:25px;
cursor:pointer;
font-weight:bold;
}

/* ================= MENU MOBILE ================= */
.menu-toggle{
display:none;
font-size:30px;
color:#fff;
cursor:pointer;
}

@media(max-width:768px){

.header{
height:70px;
padding:0 15px;
align-items:center;
justify-content:space-between;
}

.logo img{
height:40px;
}

.menu-toggle{
display:block;
}

nav ul{
display:none;
position:absolute;
top:70px;
left:0;
width:100%;
background:#000;
flex-direction:column;
text-align:center;
padding:15px 0;
border-top:2px solid #ff0000;
z-index:9999;
}

nav ul.active{
display:flex;
}

nav ul li{
padding:10px 0;
}

.slider{
height:240px;
}

.floating-player{
left:10px;
right:10px;
bottom:10px;
justify-content:space-between;
}

}

/* SMALL MOBILE */
@media(max-width:480px){

.slider{
height:200px;
}

.player-controls button{
padding:8px 14px;
font-size:12px;
}

}
.ahora-air-section{
max-width:1200px;
margin:40px auto;
padding:0 20px;
}

.ahora-en-vivo{
background:linear-gradient(90deg,#7f1d1d,#f00000);
padding:20px;
text-align:center;
font-size:24px;
font-weight:bold;
border-radius:14px;
margin-bottom:25px;
}

.programa-actual-card{
display:flex;
background:#1a1a1a;
border-radius:14px;
overflow:hidden;
color:#fff;
box-shadow:0 4px 18px rgba(0,0,0,.5);
}

.programa-actual-card img{
width:350px;
object-fit:cover;
}

.programa-actual-info{
padding:20px;
}

.programa-actual-info h3{
color:#F5A623;
margin-bottom:10px;
}

@media(max-width:768px){

.programa-actual-card{
flex-direction:column;
}

.programa-actual-card img{
width:100%;
}

}
/* ================= PROGRAMACIÓN ================= */

.home-programacion{
    max-width:1300px;
    margin:60px auto;
    padding:0 20px;
}

.section-title{
    font-size:34px;
    font-weight:700;
    color:#fff;
    margin-bottom:35px;
    text-align:center;
}

.section-title span{
    color:#ff0000;
}

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

.program-card{
    background:#151515;
    border-radius:18px;
    overflow:hidden;
    transition:.3s;
    box-shadow:0 8px 25px rgba(0,0,0,.45);
}

.program-card:hover{
    transform:translateY(-8px);
}

.program-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.program-info{
    padding:20px;
}

.program-info h3{
    color:#F5A623;
    margin-bottom:10px;
    font-size:22px;
}

.program-info p{
    color:#fff;
    margin-bottom:8px;
}

.program-info span{
    color:#bbb;
    font-size:14px;
}

@media(max-width:768px){

.program-card img{
height:190px;
}

.section-title{
font-size:28px;
}

}