
/* Bastante interesante el disñeo... ¿O no? Como sea, fijate nomás el código */


*{
box-sizing:border-box;
}

html,body{
margin:0;
padding:0;
overflow-x:hidden;
font-family:Verdana, Geneva, Tahoma, sans-serif;
background: hsla(24, 58%, 52%, 1.0);
background: linear-gradient(90deg, hsla(24, 58%, 52%, 1.0), hsla(0, 91%, 48%, 1.0));
text-align:center;
}

header{
display:flex;
align-items:center;
justify-content:space-between;
padding:10px 20px;
background:#303030;
position:relative;
z-index:10;
}

.logo-header{
width:120px;
}

.header-links{
display:flex;
gap:15px;
flex-wrap:wrap;
justify-content:center;
}

.link-header{
padding:10px 25px;
background:#f31500;
color:white;
text-decoration:none;
border-radius:25px;
border:5px solid #ce2a00;
font-size:20px;
transition:.3s;
}

.link-header:hover{
background: #F78831;
color:#ffffff;
}

main{
padding:20px;
color: #ffffff;
}

.logo-main{
width:100%;
max-width:900px;
height:auto;
display:block;
margin:40px auto;
}

img{
max-width:100%;
height:auto;
}

.video-container{
max-width:900px;
margin:auto;
}

video{
width:25%;
}

footer{
background:#333333af;
color:white;
padding:20px;
margin-top:40px;
}

.link-footer{
padding:8px 18px;
background:black;
color:white;
text-decoration:none;
border-radius:25px;
border:4px solid #cac0c0b4;
font-size:20px;
}

.link-footer:hover{
background:white;
color:black;
}

.socials{
margin-top:10px;
padding:8px 18px;
background:black;
color:white;
text-decoration:none;
border-radius:25px;
border:4px solid #cac0c0b4;
font-size:20px;
}

.socials:hover{
background:#c6c8ca;
color:#202020;
}

.guia {
    max-width: 900px;
    margin: 40px auto;
}

.programa {
display: flex;
gap: 15px;
align-items: center;
background: #1a1a1a;
margin-bottom: 12px;
padding: 12px;
border-radius: 12px;
transition: 0.3s;
}

.programa:hover {
background: #222;
}

.en-vivo {
    border-left: 6px solid red;
    background: #2a0000;
}

.portada {
    width: 120px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.info {
    flex: 1;
}

.hora {
    font-size: 14px;
    color: #ccc;
}

.titulo {
    font-size: 18px;
	color: #fff;
}

.desc {
    font-size: 13px;
    color: #aaa;
}

.badge {
    background: red;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
	color: #fff;
}

/* MOBILE */

@media (max-width:768px){

header{
flex-direction:column;
gap:10px;
display:none !important;
}

.header-links{
justify-content:center;
}

.link-header{
font-size:16px;
padding:8px 15px;
}

}
