*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#021426;
}

.hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.45),
    rgba(0,0,0,.45)),
    url(img/fondo.jpg);
    background-size:cover;
    background-position:center;
    color:white;
}

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(2, 20, 38, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 5%;
    gap: 40px;
    flex-wrap: wrap;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:35px;
}

.navbar a{
    text-decoration:none;
    color:white;
    font-weight:bold;
    font-size:14px;
}

.activo{
    color:#f0b54a !important;
}

.btn-radio{
    background:#f0b54a;
    color:#000 !important;
    padding:12px 25px;
    border-radius:30px;
}

.contenido{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:90%;
    margin:auto;
    padding-top:50px;
}

.logo img{
    width:260px;
}

.texto{
    text-align:center;
}

.texto h1{
    color:#f0b54a;
    font-size:80px;
}

.texto h2{
    font-size:60px;
}

.texto p{
    margin-top:20px;
    font-size:20px;
}

.texto h3{
    color:#f0b54a;
    margin-top:15px;
}

.datos{
    display:flex;
    gap:50px;
    justify-content:center;
    margin-top:40px;
}

.item{
    display:flex;
    gap:10px;
    align-items:center;
}

.item i{
    font-size:35px;
    color:#fff;
}

.microfono img{
    width:350px;
}

@media(max-width:991px){

    .contenido{
        flex-direction:column;
        text-align:center;
    }

    .texto h1{
        font-size:55px;
    }

    .texto h2{
        font-size:35px;
    }

    .datos{
        flex-direction:column;
    }

    .microfono img{
        width:250px;
        margin-top:40px;
    }

    .logo img{
        width:200px;
        margin-bottom:30px;
    }
	
}/* CSS Document */

.radio-section{
    background:#021426;
    padding:50px 8%;
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:40px;
    color:white;
}

.player-card{
    background:#051d33;
    border:1px solid rgba(255,255,255,.1);
    border-radius:20px;
    padding:25px;
    display:flex;
    gap:25px;
    align-items:center;
}

.player-card img{
    width:180px;
    border-radius:15px;
}

.programa-info h3{
    font-size:40px;
    margin:10px 0;
}

.programa-info p{
    color:#cfcfcf;
    margin-bottom:20px;
}

.btn-vivo{
    background:#d79c37;
    color:#fff;
    border:none;
    padding:10px 25px;
    border-radius:8px;
    margin-bottom:20px;
}

audio{
    width:100%;
}

.titulo-programacion{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.titulo-programacion a{
    background:#d79c37;
    color:#fff;
    padding:10px 20px;
    border-radius:25px;
    text-decoration:none;
}

.lista-programas{
    max-height:420px;
    overflow-y:auto;
    padding-right:10px;
}

.lista-programas::-webkit-scrollbar{
    width:8px;
}

.lista-programas::-webkit-scrollbar-thumb{
    background:#d79c37;
    border-radius:10px;
}

.programa{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#051d33;
    margin-bottom:10px;
    padding:15px;
    border-radius:12px;
}

.programa span{
    color:#d79c37;
    font-weight:bold;
    width:90px;
}

.programa img{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
}

@media(max-width:991px){
    .radio-section{
        grid-template-columns:1fr;
    }

    .player-card{
        flex-direction:column;
        text-align:center;
    }

    .player-card img{
        width:100%;
        max-width:300px;
    }
}

.navbar.scroll{
    background: #021426;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.facebook-section{
    background:#021426;
    padding:80px 20px;
    text-align:center;
    color:white;
}

.facebook-section h2{
    margin-bottom:40px;
    color:#d79c37;
    font-size:35px;
}

.fb-page{
    display:inline-block;
}

.eventos{
    background:#021426;
    padding:80px 40px;
    overflow:hidden;
}

.titulo-eventos{
    color:#e5a145;
    font-size:40px;
    margin-bottom:40px;
}

.eventosSlider{
    width:100%;
    padding-bottom:60px;
}

.swiper-slide{
    display:flex;
    justify-content:center;
}

.evento-card{
    width:280px;
    background:#08203a;
    border-radius:25px;
    overflow:hidden;
    border:2px solid rgba(255,255,255,.1);
    transition:.4s;
}

.evento-card:hover{
    transform:translateY(-10px);
}

.evento-card img{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
}

.btn-evento{
    display:block;
    text-align:center;
    background:#e5a145;
    color:#fff;
    text-decoration:none;
    padding:18px;
    font-size:20px;
}

.swiper-button-next,
.swiper-button-prev{
    color:#e5a145;
}

.swiper-pagination{
    margin-top:30px;
}

.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#fff;
    opacity:.4;
}

.swiper-pagination-bullet-active{
    background:#e5a145;
    opacity:1;
}