@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


body,html{
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: url('/imgs/fundo.jpeg');
    background-size: cover;
}
a{
    text-decoration: none;
}
.resp{
    display: none;
}



/* Estilos para a tela de loading */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0.95;
}

.spinner {
    border: 8px solid #f3f3f3; /* Borda externa */
    border-top: 8px solid #FD5E61; /* Cor da animação */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; /* Animação de rotação */
}

/* Animação de rotação */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.conteudo{
    min-height: 500px;
}
.conteudo .interno{
    margin: 10px auto;
    max-width: 1400px;
    width: 90%;
}


/*******************************************************************
 *  Header
********************************************************************/
header{
    height: 95px;
    width: 100%;
    background-color: #000;
    display: flex;  
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 100;
    top: 0;
}
.hheader{
    position: relative;
    height: 95px;
    width: 100%;
    z-index: 1;
}

header .container {
    display: flex;
    align-items: center;
    width: calc(100% - 40px);
    padding: 0 20px;
}
header .menu {
    display: flex;
    gap: 15px;
    flex-grow: 1;
    justify-content: center;
}
header .menu a{
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    padding: 0 3px;
    font-size: calc(0.9vw); 
    margin: 0 20px;
}
header a:hover {
    color: #b38f8f;
}
header a.active{
    color: #b38f8f;
}
header .lasts{
    float: right;
    position: relative;
}
header .lasts .links{
    float: right;
}




header .iconlogin{
    width: 22px;
    height: 22px;
}

header .busca form{
    display: block;
    background-color: red;
    width: 230px;
    height: 22px;
    position: absolute;
    top: 30px;
    right: 0;
    position: absolute;
    display: none;

}


header .resp{
    position: absolute;
    right: 20px;
    top: 10px;
}
@media only screen and (max-width: 1000px){
    header .resp{
        display: block;
    }
    header .lasts{
        display: none;
    }
    header .menu{
        transition: height 0.5s ease;
        width: 100%;
        top: 94px;
        height: 0;
        position: absolute;
        left: 0;
        display: inline-block;
        align-content: center;
        overflow: hidden;
        opacity: 0.;
        background-color: #000;
    }
    header .menu a{
        width: 100%;
        margin: 0 0 10px 0;
        font-size: 25px;
        display: block;
        padding: 5px 0;
    }
    
}


/*******************************************************************
 *  banner
********************************************************************/
.banner{
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/imgs/banner2.jpg');
    height: calc(100vw * 0.416); 
    width: 100%;
}
@media only screen and (max-width: 700px){
    .banner{
        height: 200px; 
    }
}




/*******************************************************************
 *  Player
********************************************************************/
#player{
    width: 100%;
    height: 98px;
    background-color: #000000;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: flex;
    color: #fff;
    border-top: 1px solid #6d6b6b;
    display: none;
}
#player .cps{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    transition: flex 0.5s ease;
    flex: 1; 
}
.player .cps.expanded {
    flex: 0 0 350px; /* Expande para 350px */
}
/****************/
#player .capa{
    flex: 0 0 100px; 
}
#player #pcapa{
    padding: 10px;
}
/****************/
#player .nome{
    flex: auto; 
    justify-content: left;
}
#player #pnome{
    padding: 10px;
    text-align: left;
}
#player #pnome b{
    display: block;
    font-size: 25px;
}
#player #pnome i{
    display: block;
    font-size: 20px;
    color: #777777;
    font-style: normal;
}
/****************/
#player .controle{
    flex: 0 0 50px;
}
#player .controle .cplay{
    width: 43px;
    height: 43px;
    display: block;
    background: url('/imgs/player.png');
    background-repeat: no-repeat;
    background-position: -79px 0 ;
}
/****************/
#player .favorito{
    flex: 0 0 50px;
}
#player .favorito .cfavorito{
    width: 25px;
    height: 25px;
    display: block;
    background: url('/imgs/player.png');
    background-repeat: no-repeat;
    background-position: -26px 0 ;
}
/****************/
#player .volume{
    flex: 0 0 200px; 
}

#player .volume input{
    width: 100%;
}
/****************/
#player .progress{
    flex: 0 0 350px; 
}
#player #progress{
    width: calc(100% - 30px);
    padding: 0 15px;
    display: flex;
}
#player #progress span,
#player #progress input{
    flex: 0 1 0;
}
#player #progress input{
    flex: 1;
}
/*************/
@media only screen and (max-width: 1000px){
    #player .progress{
        flex: 0 0 250px; 
    }
}
@media only screen and (max-width: 900px){
    #player .progress{
        flex: 0 0 150px; 
    }
}
@media only screen and (max-width: 800px){
    #player{
        height: 170px;
        flex-wrap: wrap;
    }
    #player .nome{
        width: calc(80% - 20px);
    }
    #player .capa{
        width: 20%;
    }
    #player .progress{
        flex: auto;
    }
}
@media only screen and (max-width: 500px){
    #player{
        height: 314px;
    }
    #player.on{
        display: block;
    }
    #player .cps{
        width: 100%;
        text-align: center;
    }
}




/*******************************************************************
 *  Noticia
********************************************************************/
.conteudo{
    color: #fff;
    overflow: auto;
}
.noticia{
    font-size: 18px;
    margin: 20px;
    padding: 35px;
    width: calc(100% - 110px);
    background-color: #000;
    border-radius: 20px;
    display: flex;
}
.noticia .esq{
    flex: 1;
}
.noticia .dir{
    flex: 1;
    gap: 15px;
}
.noticia .img{
    margin-left: 20px;
    margin-bottom: 20px;
    max-width: calc(100% - 20px);
}
.noticia h1{
    font-size: calc(6.2vw); 
    text-transform: uppercase;
    letter-spacing: -5px;
    margin: 0;
}
.noticia .tags a{
    font-size: 12px;
    border: 1px solid #FD5E61;
    color: #FD5E61;
    border-radius: 15px;
    font-size: 10px;
    padding: 5px;
    text-decoration: none;;
}
@media only screen and (max-width: 700px){
    .noticia h1{
        font-size: 40px; 
        letter-spacing: 0;
    }
}
@media only screen and (max-width: 500px){
    .noticia{
        display: block;
    }
}



/*******************************************************************
 *  Podcast
********************************************************************/
.podcast{
    margin: 20px;
    padding: 35px;
    width: calc(100% - 110px);
}
.podcast h2{
    font-size: calc(6.2vw); 
    text-transform: uppercase;
    letter-spacing: -5px;
    margin: 0 0 30px 0;
    text-align: center;
}
.podcast .sub{
    text-align: center;
    margin: 10px 0;
}
.podcast .container{
    display: flex;
    margin: 50px 20px;
    text-align: center;
}
.podcast .esq,
.podcast .dir{
    flex: 1;
}
.podcast .esq{
    width: calc(27.7vw); 
    flex: none;
}
.podcast .esq img{
    width: 100%;
}
.podcast .list{
    width: calc(100% - 80px);
    margin: 0 40px;
}
.podcast .pods{
    display: flex;
    width: 100%;
    border-bottom: 1px solid #1E1E1E;
    padding: 15px 0;
    align-items: baseline;
}
.podcast .pods span{
    flex: 1;
}
.podcast .pods .num{
    font-size: calc(2.08vw); 
    width: 80px;
    flex: none;
    font-weight: 700;
}
.podcast .pods .music{
    font-size: calc(2.08vw); 
    font-weight: 300;
}
.podcast .pods .artista{
    font-size: calc(1.08vw); 
    color: #777777;
}
.podcast .pods .ouvir{
    width: 165px;
    flex: none;
}
.podcast .pods .ouvir a{
    color: #FAFAFA;
    border: 1px solid #FAFAFA;
    border-radius: 30px;
    padding: 5px 15px;
    font-size: calc(1.08vw); 
    text-decoration: none;
    text-transform: uppercase;
}
.podcast .mais{
    margin: 20px auto;
    width: 140px;
}
.podcast .icon-circle {
    width: 25px; /* Tamanho do círculo */
    height: 25px;
    border: 1px solid #ff5a5a; /* Cor da borda (rosa) */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 10px auto;
}
.podcast .arrow-down {
    width: 7px;
    height: 7px;
    border-left: 2px solid #ff5a5a; /* Cor da seta */
    border-bottom: 2px solid #ff5a5a;
    transform: rotate(-45deg); /* Inclinação para a seta */
    position: relative;
    bottom: 2px; /* Ajuste de posicionamento */
}
.podcast .mais a{
    text-align: center;
    color: #FAFAFA;
    font-size: 25px;
    text-decoration: none;
    text-transform: lowercase;
}
@media only screen and (max-width: 1000px){
    .podcast .container{
        display: block;
        margin: 50px 20px;
        text-align: center;
    }
    .podcast .esq,
    .podcast .dir{
        flex: none;
    }
    .podcast .esq{
        width: 100%; 
        flex: none;
    }
    .podcast .pods .num{
        font-size: 18px; 
    }
    .podcast .pods .music{
        font-size: 18px; 
    }
    .podcast .pods .artista{
        font-size: 18px; 
    }
    .podcast .pods .ouvir{
        font-size: 18px;
    }
    .podcast .pods .ouvir a{

    }
   
}



/*******************************************************************
 *  Blog
********************************************************************/
.blog{
    margin: 0;
    padding:  0;
}
.blog .principal{
    margin: 10px auto;
    max-width: 1400px;
    width: 80%;
    background: #E9F4EB;
}
.blog .principal img{
    width: 100%;
}
.blog .principal .texto{
    padding: 15px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 22.5px;
}
.blog .principal .texto h3{
    font-size: 45px;
    font-weight: 700;
    line-height: 45px;
    margin: 5px 0;
}

.blog .lista{
    max-width: 1400px;
    width: 80%;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px; 
}
.blog .campos{
    background-color: #000;
    border-radius: 10px;
    width: calc(50% - 25px); /* Largura fixa para garantir 2 por linha com espaçamento */
    color: #fff;
    font-size: 20px;
}
.blog .campos img{
    width: 100%;
}
.blog .campos .texto{
    padding: 15px;
}
@media only screen and (max-width: 1000px){
    .blog .campos{
        width: calc(1000% - 25px); /* Largura fixa para garantir 2 por linha com espaçamento */
    }
}




/*******************************************************************
 *  Ouça a radio
********************************************************************/
.sobre{
    font-size: 18px;
    margin: 0;
    padding:  0;
    background-image: url('/imgs/ssobre7.png');
}
.sobre .container,
.sobre .container2{
    display: flex;
}
.sobre .container{
    height: 700px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/imgs/ssobre4.png');
    z-index: 1;
    position: relative;
}
.sobre .container .esq{
    flex: 1;
    padding: 30px 80px;
}
.sobre .container .dir{
    width: 700px;
    background-position: top right;
    background-repeat: no-repeat;
    background-image: url('/imgs/ssobre2_2.png');
}
.sobre .imgmeio{
    z-index: 2;
    margin-top: -136px;
    position: relative;
}


.sobre h2{
    font-size: 80px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
}
.sobre .desde{
    font-size: 16px;
    color: #FD5E61;
}
.sobre .desde b{
    padding: 0 30px;
}
.sobre .container2{
    position: relative;
    top: -197px;
    height: 800px;
    z-index:1;
}
.sobre .container2 .esq{
    margin-top: 150px;
    background-position: top left;
    background-repeat: no-repeat;
    background-image: url('/imgs/ssobre1.png');
    width: 800px;
}
.sobre .container2 .dir{
    margin-top: 250px;
    flex: 1;
    padding: 0 80px;
}

@media only screen and (max-width: 1690px){
    .sobre {
        padding: 0 2px;
    }
    .sobre .container{
        height: auto;
        padding-bottom: 150px;
    }
    .sobre .container .dir{
        width: 50%;
        background-size: contain;
    }
}
@media only screen and (max-width: 1000px){
    .sobre .container,
    .sobre .container2{
        display: block;
    }
    .sobre .container .dir{
        display: none;
    }
    .sobre img.resp{
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    .sobre h2{
        font-size: 40px;
    }
    .sobre .container .esq,
    .sobre .container2 .dir{
        padding: 10px 40px;
    }
    .sobre .imgmeio{
        width: 500px;
        margin-top: -89px;
    }
    .sobre .container{
        padding-bottom: 80px;
    }
}
@media only screen and (max-width: 550px){
    .sobre .imgmeio{
        width: 280px;
        margin-top: -49px;
    }
    .sobre .container{
        padding-bottom: 50px;
    }
}


/*******************************************************************
 *  Usuario
********************************************************************/
.usuario{
    font-size: 18px;
}
.usuario .header{
    width: 100%;
}
.usuario .container{
    max-width: 1400px;
    width: 80%;
    margin: 10px auto;
}
.usuario input[type='text'],
.usuario input[type='password'],
.usuario textarea{
    width: calc(100% - 30px);
    margin: 0 0 10px 0;
    background: transparent;
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    text-align: left;
    padding: 15px;
    border: 0;
    border-bottom: 1px solid #fff;
}
.usuario textarea{
    height: 150px;
}
.usuario input::placeholder {
    color: #999;
    font-style: italic;
}
/* Remove a borda ao focar */
.usuario input:focus {
    outline: none;
    border-bottom: 1px solid #fff;
    background-color: transparent;
}
.usuario a{
    color: #fff;
    text-decoration: none;
}
.usuario a:hover{
    color: #ddd8be;
    text-decoration: underline;
}

/* Add new styles for submit button */
.usuario button {
    background-color: #FD5E61;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.usuario button:hover {
    background-color: #ff7477;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 94, 97, 0.3);
}

.usuario button:active {
    transform: translateY(0);
}

/* ... rest of existing code ... */

/*******************************************************************
 *  Programação
********************************************************************/
.programacao{
    font-size: 18px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/imgs/programacao.jpg');
}
.programacao .header{
    height: calc(100vw * 0.267); 
    width: 100%;
    display: inline-block;
    align-content: center;    
}
.programacao h1.t{
    font-size: calc(4.2vw); 
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin: 0 auto;
    flex: 1;
}
.programacao h3.t{
    flex: 1;
    font-size: calc(1.3vw); 
    font-weight: 400;
    text-align: center;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}
.programacao .dias{
    max-width: 1400px;
    width: 80%;
    margin: 10px auto;
}
.programacao .dias ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.programacao .dias li{
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}
.programacao .dias a{
    display: block;
    padding: 10px;
    border: 1px solid #E9F4EB;
    margin: 0 5px;
    border-radius: 10px;
    font-size: 40px;
    font-size: calc(100vw * 0.0167); 
    font-weight: 900;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
    color: #E9F4EB;
}
.programacao .dias a.on,
.programacao .dias a:hover{
    background-color: #E9F4EB;
    color: #171717;
}

.programacao .lista{
    max-width: 1400px;
    width: 80%;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
}
.programacao .campos{
    background-color: #E9F4EB;
    border-radius: 10px;
    width: calc(50% - 50px); /* Largura fixa para garantir 2 por linha com espaçamento */
    gap: 30px;
    color: #000;
    padding: 20px;
    font-size: 20px;
}
.programacao .campos img{
    float: left;
    margin-right: 20px;
}
.programacao .campos h3{
    font-size: 30px;
    margin: 0 0 20px 0;
}
.programacao .campos h4{
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 20px 0;
}
.programacao .campos h5{
    font-size: 25px;
    margin: 0 0 20px 0;
    font-weight: 400;
}
@media only screen and (max-width: 1000px){
    .programacao .campos{
        width: calc(100% - 50px);
        margin-bottom: 15px;
    }
    .programacao h3.t{
        font-size: 18px;
    }
}
@media only screen and (max-width: 700px){
    .programacao h1.t{
        font-size: 25px;
    }
    .programacao .dias a{
        padding: 5px;
        margin: 0 5px;
        font-size: 14px;
    }
    .programacao .header{
        height: 200px; 
    }
}

/*******************************************************************
 *  podcasts internas
********************************************************************/
.podcastint{
    font-size: 18px;
    margin: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/imgs/podcasts.jpg');
}
.podcastint .header{
    height: calc(100vw * 0.267); 
    width: 100%;
    display: inline-block;
    align-content: center;    
}
.podcastint h1.t{
    font-size: calc(4.2vw); 
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin: 0 auto;
}
.podcastint h3.t{
    font-size: calc(1.3vw); 
    font-weight: 400;
    text-align: center;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}
.podcastint .lista{
    max-width: 1400px;
    width: 80%;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px; 
}
.podcastint .campos{
    position: relative;
    border-radius: 10px;
    width: calc(33% - 35px); /* Largura fixa para garantir 2 por linha com espaçamento */
    height: calc(25vw); 
    overflow: hidden;
}
.podcastint .campos img{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.podcastint .campos h4{
    position: absolute;
    bottom: 25px;
    width: calc(100% - 60px);
    left: 30px;
    z-index: 2;
    color: #000;
    font-size: calc(2.2vw);
    font-weight: 700;
}
.podcastint .campos h5{
    position: absolute;
    bottom: 10px;
    left: 30px;
    z-index: 2;
    color: #000;
    font-size: calc(1.1vw);
    font-weight: 400;
}
@media only screen and (max-width: 1000px){
    .podcastint .campos{
        width: calc(50% - 27px);
        height: calc(35vw); 
    }
    .podcastint h3.t{
        font-size: 18px;
    }
    .podcastint .campos h4{
        font-size: calc(2.9vw);
    }
    .podcastint .campos h5{
        font-size: calc(1.9vw);
    }
}
@media only screen and (max-width: 700px){
    .podcastint h1.t{
        font-size: 25px;
    }
    .podcastint .dias a{
        padding: 5px;
        margin: 0 5px;
        font-size: 14px;
    }
    .podcastint .campos{
        width: calc(100% - 00px);
        height: calc(80vw); 
    }
    .podcastint .campos h4{
        font-size: 25px;
    }
    .podcastint .campos h5{
        font-size: 18px;
        bottom: 0;
    }
    .podcastint .header{
        height: 200px; 
    }
}





/*******************************************************************
 *  Contato
********************************************************************/
.contato{
    margin: 0;
}
.contato .header{
    width: 100%;
}
.contato .container{
    max-width: 1400px;
    width: 80%;
    margin: 10px auto;
    display: flex;
    gap: 50px; 
}
.contato .container .esq,
.contato .container .dir{
    width: calc(50% - 70px); /* Largura fixa para garantir 2 por linha com espaçamento */
    font-size: 15px;
    padding: 15px;
    display: block;
    flex: 1;
}
.contato h2{
    font-size: 50px;
    font-weight: 700;
    color: #FD5E61;
    margin: 0 0 10px 0;
}
.contato h3{
    font-size: 31px;
    font-weight: 700;
    color: #FD5E61;
    margin: 0 0 10px 0;
}
.contato form input[type='text'],
.contato form textarea{
    width: calc(100% - 30px);
    margin: 0 0 10px 0;
    background: #000000;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    padding: 15px;
    color: #fff;
    border: 0;
}
.contato form textarea{
    height: 150px;
    color: #fff;
}
@media only screen and (max-width: 800px){
    .contato .container{
        width: calc(100% - 80px);
        margin: 10px 40px;
        display: block;
    }
    .contato .container .esq,
    .contato .container .dir{
        width: calc(100% - 40px); /* Largura fixa para garantir 2 por linha com espaçamento */
    }
}



/*******************************************************************
 *  progrmas
********************************************************************/
.programas{
    font-size: 18px;
    margin: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/imgs/programas.jpg');
}
.programas .header{
    height: calc(100vw * 0.267); 
    width: 100%;
    display: inline-block;
    align-content: center;
    padding-top: calc(100vw * 0.05);
}
.programas h1.t{
    flex: 1;
    font-size: calc(4.2vw); 
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin: 0 auto;
}
.programas h3.t{
    font-size: calc(1.3vw); 
    font-weight: 400;
    text-align: center;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    flex: 1;
}
.programas .lista{
    max-width: 1400px;
    width: 80%;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px; 
}
.programas .campos{
    background-color: #000;
    border-radius: 10px;
    width: calc(50% - 70px); /* Largura fixa para garantir 2 por linha com espaçamento */
    color: #fff;
    font-size: 20px;
    padding: 15px;
    display: flex;
}
.programas .campos .details{
    flex: 1;
}
.programas .campos .img{
    flex: 1;
}
.programas .campos .img img{
    width: 90%;
}
.programas .campos h3{
    font-family: Roboto;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #FD5E61;
}
.programas .campos h4{
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
}
.programas .campos h5{
    font-size: 14px;
    font-weight: 400;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin: 0 0 20px 0;
}
.programas .campos p{
    font-size: 14px;
}
@media only screen and (max-width: 1000px){
    .programas .campos{
        width: calc(100% - 20px);
    }
}
@media only screen and (max-width: 700px){
    .programas h1.t{
        font-size: 25px;
    }
    .programas h3.t{
        font-size: 16px;
    }
    .programas .campos{
        width: 100%;
    }
}
@media only screen and (max-width: 500px){
    .programas .campos{
        display: block;
    }
    .programas .campos .details{
        flex: none;
    }
    .programas .campos .img img{
        flex: none;
        width: 100%;
    }
}


/*******************************************************************
 *  ouca_radio
********************************************************************/
.ouca_radio{
    font-size: 18px;
}
.ouca_radio .header{
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/imgs/ouca.jpg?!');
    background-size: 100% auto; 
    height: calc(100vw * 0.367); 
    max-width: 1400px;
    width: 80%;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ouca_radio .header .play{
    margin: 0 auto;
}
.ouca_radio .lista{
    max-width: 1400px;
    width: 80%;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
}
.ouca_radio .programacao{
    background: #E9F4EB;
    width: calc(50% - 40px);
    color: #000;
    padding: 15px;
}
.ouca_radio .programacao h3{
    font-size: 50px;
    font-weight: 900;
    line-height: 50px;
    text-align: center;
}
.ouca_radio .programacao table{
    border-collapse: collapse;
    width: 100%;
}
.ouca_radio .programacao tr{
    border-bottom: 1px solid #000;
}
.ouca_radio .programacao td{
    padding: 6px;
}
.ouca_radio .programacao .hora{
    font-size: 17.56px;
    font-weight: 700;
    text-align: left;
}
.ouca_radio .programacao .nome{
    font-size: 17.56px;
    font-weight: 400;
    text-align: right;
    text-transform: uppercase;
}

.ouca_radio .proximo{
    width: calc(50% - 10px);
}
.ouca_radio .proximo img{
    width: 100%;
}
@media only screen and (max-width: 1000px){
    .ouca_radio .lista{
        display: block;
    }
    .ouca_radio .programacao{
        width: calc(100% - 30px);
    }
    .ouca_radio .proximo{
        width: calc(100%);
        margin-top: 20px;
    }
    .ouca_radio .programacao h3{
        font-size: 30px;
    }
    .ouca_radio .programacao .hora{
        font-size: 14px;
        font-weight: 700;
        text-align: left;
    }
    .ouca_radio .programacao .nome{
        font-size: 14px;
    }
}
@media only screen and (max-width: 600px){
    .ouca_radio .header{
        height: 300px;
    }
    .ouca_radio .header .play img{
        height: 150px;
    }
}



/*******************************************************************
 *  agenda
********************************************************************/
.agenda{
    font-size: 18px;
}
.agenda .header{
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/imgs/agenda.jpg?!');
    background-size: 100% auto; 
    height: calc(100vw * 0.367); 
    width: 100%;
    display: inline-block;
    align-content: center;    
}
.agenda h1.t{
    flex: 1;
    font-size: calc(4.2vw); 
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin: 0 auto;
}
.agenda h3.t{
    flex: 1;
    font-size: calc(1.3vw); 
    font-weight: 400;
    text-align: center;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}
.agenda h2.mes{
    font-size: 30px;
    font-weight: 700;
    text-align: left;
    color: #fff;
    border-bottom: 1px solid #fff;
    margin-bottom: 15px;
    margin: 0 auto 15px auto;
    padding-bottom: 15px;
    max-width: 1400px;
    width: 80%;
}
.agenda .tags{
    max-width: 1400px;
    width: 80%;
    margin: 10px auto;
}
.agenda .tags ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.agenda .tags li{
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}
.agenda .tags a{
    display: block;
    padding: 10px;
    border: 1px solid #E9F4EB;
    margin: 0 5px;
    border-radius: 10px;
    font-size: calc(100vw * 0.0167); 
    font-weight: 900;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    color: #E9F4EB;
}
.agenda .tags a.on,
.agenda .tags a:hover{
    background: #FD5E61;
    color: #171717;
}
.agenda .lista{
    max-width: 1400px;
    width: 80%;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
}
.agenda .campos{
    background-color: #000;
    border-radius: 10px;
    width: calc(50% - 15px); /* Largura fixa para garantir 2 por linha com espaçamento */
    gap: 30px;
    color: #000;
    font-size: 20px;
}
.agenda img{
    width: 100%;
}
.agenda .details{
    display: flex;
    color: #eee;
    align-items: center;
    gap: 20px;
    padding: 0 15px;
}
.agenda .details h3{
    flex: 0 0 40px;
    border: 1px solid #FD5E61;
    border-radius: 10px;
    font-size: calc(3.3vw); 
    font-weight: 700;
    line-height: 44.22px;
    padding: 10px;
}
.agenda .details h4{
    flex: 1;
}
.agenda .details h4 b{
    font-size: calc(2.3vw); 
    font-weight: 700;
}
.agenda .details h4 i{
    font-style: normal;
    font-size: calc(1.3vw); 
    font-weight: 400;
}
.agenda .details span{
    flex: 0 0 100px;
}
.agenda .details span a{
    border: 1px solid #FD5E61;
    border-radius: 10px;
    font-size: calc(0.9vw); 
    color: #FD5E61;
    font-weight: 700;
    padding: 10px;
}

@media only screen and (max-width: 1000px){
    .agenda .details h3{
        font-size: 44.22px;
    }
    .agenda .details h4 b{
        font-size: 45px;
    }
    .agenda .details h4 i{
        font-size: 20px;
    }
    .agenda .details span a{
        font-size: 14px; 
    }
    .agenda .campos{
        width: calc(100% - 15px); /* Largura fixa para garantir 2 por linha com espaçamento */
    }
}
@media only screen and (max-width: 700px){
    .agenda h1.t{
        font-size: 40px;
    }
    .agenda h3.t{
        font-size: 15px;
    }
    .agenda .tags a{
        font-size: 13px; 
    }
}
@media only screen and (max-width: 580px){
    .agenda .details{
        display: block;
    }
    .agenda .details h3{
        width: 50px;
        float: left;
        flex: none;
        margin-right: 15px;
    }
    .agenda .details h4{
        flex: none;
    }
    .agenda .details span{
        flex: none;
    }
}

/*******************************************************************
 *  radios
********************************************************************/
.radios{
    font-size: 18px;
    margin: 0;
}
.radios .topo{
    position: relative;
    width: 100%;
    padding: 0 0;
}
.radios .topo img{
    width: 100%;
    z-index: 1;
}
.radios .fm{
    max-width: 1400px;
    width: 80%;
    margin: 10px auto;
}
.radios .fm img{
    width: 100%;
    cursor: pointer;
}
.radios .lista{
    max-width: 1400px;
    width: 80%;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
}
.radios .campos{
    border-radius: 10px;
    width: calc(33% - 12px); /* Largura fixa para garantir 2 por linha com espaçamento */
    color: #000;
    font-size: 20px;
}
.radios .campos img{
    width: 100%;
}
#radios .radio{
    cursor: pointer;
}
@media only screen and (max-width: 900px){
    .radios .campos{
        width: calc(50% - 12px); /* Largura fixa para garantir 2 por linha com espaçamento */
    }
}
@media only screen and (max-width: 600px){
    .radios .campos{
        width: calc(100% - 12px); /* Largura fixa para garantir 2 por linha com espaçamento */
    }
}


/*******************************************************************
 *  promocoes
********************************************************************/
.promocoes{
    font-size: 18px;
    margin: 0 0 20px 0;
}
.promocoes .header{
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/imgs/promocoes.jpg');
    background-size: 100% auto; 
    height: calc(100vw * 0.367); 
    width: 100%;
    display: inline-block;
    align-content: center;    
}
.promocoes h1.t{
    flex: 1;
    font-size: calc(4.2vw); 
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin: 0 auto;
}
.promocoes h3.t{
    flex: 1;
    font-size: calc(1.3vw); 
    font-weight: 400;
    text-align: center;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}
.promocoes .lista{
    max-width: 1400px;
    width: 80%;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
}
.promocoes .campos{
    background-color: #000;
    border-radius: 10px;
    width: calc(33% - 50px);
    color: #000;
    font-size: 20px;
}
.promocoes .campos img{
    width: 100%;
}
.promocoes .campos h3{
    font-size: 30px;
    font-weight: 700;
    margin: 5px 15px;
    color: #FFFFFF;
}
.promocoes .campos a{
    border: 1px solid #FD5E61;
    color: #FD5E61;
    padding: 4px;    
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    text-align: center;
    float: right;
    margin: 15px;
    border-radius: 10px;  
}
@media only screen and (max-width: 1000px){
    .promocoes .campos{
        width: calc(50% - 20px);
    }
    .promocoes h3.t{
        font-size: 16px;
    }
}
@media only screen and (max-width: 700px){
    .promocoes h1.t{
        font-size: 25px;
    }
    .promocoes .campos{
        width: 100%;
    }
}


/*******************************************************************
 *  Footer
********************************************************************/

footer{
    width: 100%;
    background-color: #000;
    color: #4D4D4D;
    font-size: 12px;
}
footer.player{
    padding-bottom: 100px;
}
footer .container{
    display: flex;  
    padding-top: 50px;
    justify-content: center;
    width: 100%;
}
footer .logo-link{
    width: 400px;
    padding-left: 20px;
}
footer .logo{
    width: 190px;
}
footer .menu {
    display: block;
    flex-grow: 1;
    padding-top: 25px;
    color: #777777;
}
footer .menua a{
    color: #FAFAFA;
    display: block;
    padding: 5px 0;
    width: 100%;
    text-transform: uppercase;
    text-decoration: none;
}
footer .tel{
    display: block;
    padding-top: 20px;
}
footer .menuc{
    width: 20%;
}
footer .menuc_1{
    display: block;
    text-align: right;
    padding-right: 15px;
    margin-bottom: 20px;
}
footer .menuc a.a{
    padding: 0 10px;
}
footer .menuc_2{
    display: flex;
}
footer .menuc a.b{
    flex: 1;
    text-align: center;
    color: #777777;
    font-size: 10px;
    padding: 7px 5px;
    text-transform: uppercase;
    text-decoration: none;
}
footer hr{
    margin-top: 30px;
    width: 50%;
    border: 0;
    border-bottom: 1px solid #171717;
}
footer .assinatura{
    text-align: center;
    padding: 15px 0 80px 0;
    display: block;
    color: #4D4D4D;
    width: 100%;
    font-size: 18px;
}
@media only screen and (max-width: 900px){
    footer .menu {
        display: none;
    }
    footer .logo-link{
        width: auto;
        margin: 0 auto
    }
}

@media only screen and (max-width: 900px){
    footer.player{
        padding-bottom: 100px;
    }
}
@media only screen and (max-width: 800px){
    footer.player{
        padding-bottom: 150px;
    }
}
@media only screen and (max-width: 500px){
    footer.player{
        padding-bottom: 275px;
    }
}





/*******************************************************************
 *  Player
********************************************************************/

.player-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-color: #1a1a1a;
    display: flex;
    display: none;
    align-items: center;
    padding: 0 20px;
    color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.player-container.hidden {
    transform: translateY(100%);
}

.player-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
}

.radio-image {
    width: 80px;
    height: 80px;
    min-width: 60px;
    background-color: #333;
    border-radius: 5px;
    overflow: hidden;
}

.radio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.radio-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.radio-name {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 200px;
}

.play-button {
    background: none;
    border: none;
    color: white;
    font-size: 2em;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.2s;
}

.play-button:hover {
    transform: scale(1.1);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 200px;
    padding: 0 10px;
}

.volume-icon {
    font-size: 1.2em;
    cursor: pointer;
}

.volume-slider {
    flex: 1;
    -webkit-appearance: none;
    height: 5px;
    border-radius: 5px;
    background: #4a4a4a;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}

.player-right {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 10px;
    min-width: 33%;
}

.close-button {
    background: none;
    border: none;
    color: #888;
    font-size: 1.2em;
    cursor: pointer;
    padding: 10px;
    transition: color 0.2s;
}

.close-button:hover {
    color: white;
}

.show-player-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
    z-index: 1000;
}

.show-player-button:hover {
    transform: scale(1.1);
}

.show-player-button.visible {
    display: flex;
}

@media screen and (max-width: 768px) {
    .player-container {
        height: 120px;
        padding: 0 10px;
    }

    .radio-image {
        width: 60px;
        height: 60px;
    }

    .radio-name {
        font-size: 1em;
    }

    .player-center {
        min-width: 150px;
    }

    .volume-control {
        max-width: 150px;
    }
}

@media screen and (max-width: 440px) {
    .player-container {
        height: auto;
        padding: 15px 10px;
        flex-direction: column;
        gap: 15px;
    }

    .player-left {
        width: 100%;
        justify-content: center;
    }

    .radio-image {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .radio-name {
        font-size: 1em;
        text-align: center;
    }

    .player-center {
        width: 100%;
        min-width: auto;
        gap: 15px;
    }

    .volume-control {
        max-width: 200px;
        width: 100%;
    }

    .player-right {
        position: absolute;
        top: 10px;
        right: 10px;
        padding: 0;
    }

    .close-button {
        padding: 5px;
    }
}
