/* ========================================
   PORTAL NOSSA FM 90,5
   CSS PRINCIPAL
======================================== */


/* ===== VARIÁVEIS ===== */

:root {

    --amarelo: #FFC107;
    --azul: #00BFFF;
    --azulescuro: #0058d4;
    --preto: #111111;
    --branco: #FFFFFF;
    --cinza: #F5F5F5;
    --cinza-texto: #666666;

}


/* ===== RESET ===== */

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: 'Poppins', sans-serif;
    background: var(--branco);
    color: var(--preto);
    overflow-x: hidden;
    padding-top: 0;

}


/* ===== LINKS ===== */

a {

    text-decoration: none;
    transition: 0.3s ease;

}


a:hover {

    color: var(--amarelo);

}


/* ===== TÍTULOS ===== */

h1, h2, h3, h4, h5, h6 {

    font-weight: 700;

}


h2 {

    font-size: 2.3rem;
    margin-bottom: 40px;
    position: relative;
    text-align: center;

}


h2::after {

    content: "";
    width: 80px;
    height: 4px;
    background: var(--amarelo);
    display: block;
    margin: 12px auto 0;
    border-radius: 5px;

}


/* ========================================
   BOTÃO WHATSAPP FLUTUANTE
======================================== */

.whatsapp-fixo {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 60px;

    height: 60px;

    background: #25D366;

    color: white;

    border-radius: 50%;

    font-size: 32px;

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 9999;

    box-shadow: 0 5px 15px rgba(0,0,0,0.5);

    animation: pulsar 1.5s infinite;

}


.whatsapp-fixo:hover {

    color: white;

    transform: scale(1.1);

}


/* Animação */

@keyframes pulsar {

    0% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.12);

    }

    100% {

        transform: scale(1);

    }

}


/* ========================================
   BOTÃO VOLTAR AO TOPO
======================================== */


#btnTopo {

    position: fixed;

    bottom: 100px;

    right: 30px;

    width: 45px;

    height: 45px;

    border: none;

    border-radius: 50%;

    background: var(--azul);

    color: var(--branco);

    cursor: pointer;

    display: none;

    z-index: 9998;

    box-shadow: 0 3px 10px rgba(0,0,0,.5);

}


#btnTopo:hover {

    background: var(--amarelo);

    color: var(--preto);

}





/* ========================================
   FIM PARTE 1
======================================== */








/* ========================================
   SEÇÕES GERAIS
======================================== */


.programacao,
.noticias,
.parceiros {

    padding: 90px 0;

}


/* ========================================
   PROGRAMAÇÃO
======================================== */


.card-programa {

    background: white;

    border-radius: 20px;

    padding: 30px;

    text-align: center;

    height: 100%;

    box-shadow: 0 5px 25px rgba(0,0,0,.12);

    border-top: 5px solid var(--amarelo);

    transition: .3s;

}


.card-programa:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 35px rgba(0,0,0,.25);

}


.card-programa h4 {

    color: var(--azul);

    margin-bottom: 15px;

}


.card-programa .horario {

    color: var(--preto);

    font-weight: 700;

}


/* ==================================================
   CENTRAL DE NOTÍCIAS PREMIUM
================================================== */

.central-noticias {

    padding: 90px 0;

    background: #f8fbff;

}


/* Grade das notícias */

.noticias-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}


/* Card da notícia */

.noticia-item {

    background: #ffffff;

    border-radius: 18px;

    padding: 15px;

    display: flex;

    align-items: center;

    gap: 15px;

    position: relative;

    text-decoration: none;

    min-height: 120px;

    border-left: 5px solid #0058d4;

    overflow: hidden;

    box-shadow:
        0 8px 20px rgba(0, 60, 150, .08);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}


/* Efeito hover */

.noticia-item:hover {

    transform: translateY(-8px);

    border-left-color: #00bfff;

    box-shadow:
        0 20px 40px rgba(0, 80, 200, .22),
        0 0 20px rgba(0, 191, 255, .25);

}

.noticia-item::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 60%;

    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transition: .6s;

}

.noticia-item:hover::before {

    left: 130%;

}


/* ==================================================
   CORES DAS FONTES NAS BORDAS DOS CARDS
================================================== */

/* Câmara */
.noticia-item.camara {

    border-left-color: #0058d4;

}


/* Prefeitura */
.noticia-item.prefeitura {

    border-left-color: #0058d4;

}


/* G1 */
.noticia-item.g1 {

    border-left-color: #0058d4;

}


/* ==================================================
   DATA E SELO DE URGÊNCIA
================================================== */

.data-noticia {

    display: flex;

    align-items: center;

    gap: 8px;

    flex-wrap: wrap;

}


.urgente {

    background: linear-gradient(
        135deg,
        #ff0000,
        #c00000
    );

    color: #fff;

    font-size: 0.60rem;

    font-weight: 800;

    padding: 3px 8px;

    border-radius: 15px;

    text-transform: uppercase;

    letter-spacing: .5px;

    animation: piscar 1.2s infinite;

}


@keyframes piscar {

    0% {

        opacity: 1;

    }

    50% {

        opacity: .55;

    }

    100% {

        opacity: 1;

    }

}



/* Miniatura da notícia */

.thumb-noticia {

    width: 90px;

    height: 90px;

    border-radius: 12px;

    object-fit: cover;

    flex-shrink: 0;

    box-shadow: 0 4px 12px rgba(0,0,0,.15);

}

.noticia-item:hover .thumb-noticia {

    transform: scale(1.08);

}

/* Área das informações */

.noticia-info {

    flex: 1;

    min-width: 0;

}


/* Etiqueta da fonte */

.fonte {

    display: inline-block;

    padding: 5px 12px;

    border-radius: 25px;

    font-size: 0.68rem;

    font-weight: 800;

    text-transform: uppercase;

    margin-bottom: 8px;

    letter-spacing: .8px;

    box-shadow:
        0 3px 8px rgba(0,0,0,.18);

    border: 1px solid rgba(255,255,255,.25);

}


/* Câmara */

.fonte.camara {

    background: #6c757d;

    color: #ffffff;

}


/* G1 */

.fonte.g1 {

    background: #c40000;

    color: #ffffff;

}


/* Prefeitura */

.fonte.prefeitura {

    background: #00843d;

    color: #ffffff;

}


/* Título */

.noticia-info h3 {

    margin: 0 0 6px;

    font-size: 0.95rem;

    color: #222;

    line-height: 1.35;

    font-weight: 700;

    display: -webkit-box;

    -webkit-line-clamp: 3;

    -webkit-box-orient: vertical;

    overflow: hidden;

    min-height: 3.9em;

}


/* Data */

.noticia-info small {

    display: block;

    color: #777;

    font-size: 0.78rem;

}


/* Botão de acesso */

.mais {

    width: 38px;

    height: 38px;

    background: linear-gradient(135deg, #0066ff, #0040a8);

    color: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.2rem;

    font-weight: 700;

    flex-shrink: 0;

    box-shadow:
        0 6px 14px rgba(0, 88, 212, .35);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;

}


/* Efeito no botão */

.noticia-item:hover .mais {

    background: linear-gradient(135deg, #ffd500, #ffb700);

    color: #000;

    transform:
        rotate(90deg)
        scale(1.12);

    box-shadow:
        0 8px 18px rgba(255, 190, 0, .45);

}


/* ==================================================
   RESPONSIVO
================================================== */


/* Tablets */

@media (max-width: 992px) {


    .noticias-grid {

        grid-template-columns: repeat(2, 1fr);

    }


}


/* Celulares */

@media (max-width: 576px) {


    .central-noticias {

        padding: 60px 0;

    }


    .noticias-grid {

        grid-template-columns: 1fr;

    }


    .noticia-item {

        padding: 12px;

        min-height: auto;

        gap: 12px;

    }


    .thumb-noticia {

        width: 75px;

        height: 75px;

    }


    .fonte {

        font-size: 0.65rem;

        padding: 3px 8px;

    }


    .noticia-info h3 {

        font-size: 0.90rem;

    }


    .noticia-info small {

        font-size: 0.75rem;

    }


    .mais {

        width: 30px;

        height: 30px;

        font-size: 1rem;

    }


}


/* ========================================
   PARCEIROS
======================================== */


.parceiros {

    background: white;

}


.parceiro-box {

    background: white;

    border-radius: 15px;

    padding: 25px;

    height: 140px;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 3px 15px rgba(0,0,0,.08);

    transition: .3s;

}


.parceiro-box:hover {

    transform: scale(1.05);

    box-shadow: 0 8px 25px rgba(0,0,0,.18);

}


.parceiro-box img {

    max-width: 100%;

    max-height: 80px;

    object-fit: contain;

}


/* ========================================
   RESPONSIVIDADE INICIAL
======================================== */


@media (max-width: 991px) {


    .player-info,
    .player-audio,
    .player-status {

        text-align: center !important;

        margin-bottom: 15px;

    }


    .radio-identidade {

        justify-content: center;

    }


    .hero {

        background-attachment: scroll;

    }


    .hero h1 {

        font-size: 2.5rem;

    }


}


@media (max-width: 576px) {


    .hero {

        min-height: 600px;

    }


    .hero .logo-principal {

        max-width: 260px;

    }


    .hero h1 {

        font-size: 2rem;

    }


    .hero p {

        font-size: 1.1rem;

    }


    .btn-nossa {

        padding: 12px 25px;

        font-size: 1rem;

    }


}


/* ========================================
   FIM DA PARTE 2
======================================== */


/* ========================================
   PÁGINAS INTERNAS
======================================== */



.pagina-interna {
    margin-top: 100px;
    padding: 10px 0;
text-align: center;
}

.pagina-interna h2 {

    font-size: 2rem;
    color: #000;

}

.pagina-interna h3 {

    font-size: 20px;
    color: #000;

}

/* ========================================
   A RÁDIO / HISTÓRIA
======================================== */

.sobre-radio {

    padding: 80px 0;

}


.texto-radio {

    font-size: 1.1rem;
    line-height: 1.9;

}


.foto-estudio {

    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.2);

}


.foto-estudio img {

    width: 100%;
    transition: .4s;

}


.foto-estudio img:hover {

    transform: scale(1.05);

}


/* ========================================
   EQUIPE
======================================== */

.equipe {

    background: var(--cinza);

    padding: 80px 0;

}


.card-locutor {

    background: var(--branco);

    border-radius: 20px;

    overflow: hidden;

    text-align: center;

    box-shadow: 0 5px 20px rgba(0,0,0,.12);

    transition: .3s;

}


.card-locutor:hover {

    transform: translateY(-10px);

}


.card-locutor img {

    width: 100%;
    height: 320px;

    object-fit: cover;

}


.card-locutor h4 {

    margin-top: 15px;

    color: var(--azul);

}


.card-locutor p {

    color: var(--cinza-texto);

    padding-bottom: 20px;

}


/* ========================================
   DIRETOR
======================================== */

.biografia {

    padding: 80px 0;

}


.foto-diretor {

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0,0,0,.2);

}


.foto-diretor img {

    width: 100%;

}


.linha-tempo {

    background: var(--preto);

    color: var(--branco);

    padding: 60px;

    border-radius: 20px;

}


/* ========================================
   SERVIÇOS
======================================== */

.servicos {

    padding: 80px 0;

}


.card-servico {

    background: white;

    padding: 35px;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 5px 20px rgba(0,0,0,.12);

    height: 100%;

    transition: .3s;

}


.card-servico:hover {

    background: var(--azul);

    color: white;

    transform: translateY(-8px);

}


.card-servico i {

    font-size: 50px;

    color: var(--amarelo);

    margin-bottom: 20px;

}


/* ========================================
   GALERIA
======================================== */

.galeria {

    padding: 80px 0;

}


.item-galeria {

    overflow: hidden;

    border-radius: 15px;

}


.item-galeria img {

    width: 100%;

    transition: .5s;

}


.item-galeria:hover img {

    transform: scale(1.1);

}


/* ========================================
   COBERTURA
======================================== */

.cobertura {

    padding: 80px 0;

}


.mapa-google {

    height: 500px;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0,0,0,.15);

}


.mapa-imagem img {

    width: 100%;

    border-radius: 20px;

    margin-top: 40px;

}


/* ========================================
   CONTATO
======================================== */

.contato {

    padding: 80px 0;

}


.mapa-contato {

    height: 350px;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0,0,0,.15);

}


.formulario-contato {

    background: var(--cinza);

    padding: 40px;

    border-radius: 20px;

}


.form-control,
.form-select {

    height: 50px;

    border-radius: 10px;

}


textarea.form-control {

    height: 150px;

}


/* ========================================
   RODAPÉ
======================================== */

.footer {

    background: var(--preto);

    color: var(--branco);

    padding: 60px 0 20px;

}


.footer-logo {

    max-width: 180px;

    margin-bottom: 20px;

}


.footer h5 {

    color: var(--amarelo);

    margin-bottom: 20px;

}


.footer-lista {

    list-style: none;

    padding: 0;

}


.footer-lista li {

    margin-bottom: 12px;

}


.footer-lista a {

    color: white;

}


.footer-lista a:hover {

    color: var(--amarelo);

}


.redes-footer a {

    width: 45px;

    height: 45px;

    background: var(--azul);

    color: white;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    margin-right: 10px;

    font-size: 20px;

}


.footer-whatsapp {

    margin-top: 20px;

}


.footer-whatsapp a {

    color: var(--amarelo);

}


.copyright {

    text-align: center;

    padding-top: 20px;

    font-size: .9rem;

}


.copyright a {

    color: var(--azul);

}


/* ========================================
   RESPONSIVIDADE FINAL
======================================== */

@media(max-width:768px){

    .pagina-topo h1 {

        font-size: 2rem;


    }


    .linha-tempo {

        padding: 30px;

    }


    .card-locutor img {

        height: 250px;

    }


    .mapa-google,
    .mapa-contato {

        height: 300px;

    }

}


/* ========================================
   FIM DO STYLE.CSS
======================================== */


.servicos-home {
    padding: 80px 0;
    background: var(--azul);
    color: white;
}

/* ==================================================
   HERO PREMIUM - NOSSA FM 90,5
================================================== */

.hero-premium {
    position: relative;
    width: 100%;
    height: 100vh;

    background: url("../img/estudio/banner.webp") center top;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}


/* Overlay escuro */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}


/* Conteúdo */

.hero-conteudo {
    max-width: 850px;
    margin: 0 auto;
    padding: 30px;
    text-align: center;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 2;
}


/* Logo principal */

.hero-logo {
    width: 320px;
    max-width: 90%;
    margin-bottom: 25px;
    box-shadow: 0 5px 5px rgba(0,0,0,0.5);

    animation: flutuar 3s ease-in-out infinite;
}


/* Animação da logo */

@keyframes flutuar {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}


/* Título */

.hero-conteudo h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-conteudo p {
    font-size: 1.35rem;
    color: #fff;
    max-width: 700px;
    margin: 0 auto 35px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

/* Slogan */

.hero-slogan {

    font-size: 1.7rem;
    margin-top: 15px;
    margin-bottom: 40px;

    color: #ffd000;

    font-weight: 600;

}


/* Botões */

.hero-botoes {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}


.btn-hero,
.hero-botoes .btn-nossa {

    background: var(--azulescuro);

    color: #fff;

    padding: 15px 35px;

    border-radius: 40px;

    text-decoration: none;

    font-size: 1rem;

    font-weight: 700;

    transition: .4s;

    box-shadow:
        0 10px 25px rgba(0,0,0,.50);

}


.hero-botoes .btn-nossa:hover {

    transform: translateY(-5px);

    background: #ffd000;

    color: #000;

}


/* ==================================================
   TÍTULOS DAS SEÇÕES PREMIUM
================================================== */

.section-title,
.programacao-premium h2,
.noticias-premium h2,
.parceiros-premium h2,
.anuncie-premium h2 {

    text-align: center;

    font-size: 2.5rem;

    font-weight: 800;

    color: #003b8e;

    margin-bottom: 15px;

}


/* Subtítulos */

.subtitulo {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 50px;

    font-size: 1.1rem;

    color: #666;

}


/* Espaçamento das seções */

.programacao-premium,
.noticias-premium,
.parceiros-premium,
.anuncie-premium {

    padding: 90px 0;

}


/* ==================================================
   RESPONSIVO
================================================== */

@media(max-width: 768px) {


    .hero-premium {

        background-attachment: scroll;

    }


    .hero-logo {

        width: 230px;

    }


    .hero-conteudo h1 {

        font-size: 2.3rem;

    }


    .hero-slogan {

        font-size: 1.3rem;

    }


    .hero-botoes .btn-nossa {

        width: 100%;

        max-width: 320px;

    }


    .section-title,
    .programacao-premium h2,
    .noticias-premium h2,
    .parceiros-premium h2,
    .anuncie-premium h2 {

        font-size: 2rem;

    }


}


/* ==================================================
   PROGRAMAÇÃO PREMIUM
================================================== */

.programacao-premium {
    background: linear-gradient(135deg, #f5f9ff, #ffffff);
}


/* Espaçamento do slider */

.programacaoSwiper {
    padding: 20px 10px 70px;
}


/* Card do programa */

.card-programa-premium {

    background: #ffffff;

    border-radius: 25px;

    padding: 35px 25px;

    text-align: center;

    min-height: 290px;

    box-shadow:
        0 15px 35px rgba(0, 55, 130, 0.12);

    border-top: 6px solid #0058d4;

    transition: .8s;

}


/* Efeito ao passar o mouse */

.card-programa-premium:hover {

    transform: translateY(-12px);

    box-shadow:
        0 25px 50px rgba(0, 55, 130, 0.25);

}


/* Ícone */

.icone-programa {

    font-size: 3rem;

    display: block;

    margin-bottom: 15px;

}


/* Nome do programa */

.card-programa-premium h3 {

    color: #003b8e;

    font-size: 1.4rem;

    font-weight: 800;

    margin-bottom: 10px;

}


/* Apresentador */

.card-programa-premium h5 {

    color: #0058d4;

    font-size: 1rem;

    font-weight: 700;

    margin-bottom: 15px;

}


/* Texto */

.card-programa-premium p {

    color: #666;

    margin-bottom: 10px;

}


/* Horário */

.card-programa-premium strong {

    display: inline-block;

    margin-top: 10px;

    padding: 8px 18px;

    background: #ffd000;

    color: #000;

    border-radius: 25px;

}


/* ==================================================
   SWIPER - SETAS E BOLINHAS
================================================== */


/* Setas */

.swiper-button-next,
.swiper-button-prev {

    color: #0058d4 !important;

    font-weight: bold;

}


/* Bolinhas */

.swiper-pagination-bullet {

    width: 12px;

    height: 12px;

    background: #0058d4 !important;

    opacity: 0.4;

}


.swiper-pagination-bullet-active {

    opacity: 1;

    background: #ffd000 !important;

}


/* ==================================================
   NOTÍCIAS PREMIUM
================================================== */

.noticias-premium {

    background: #ffffff;

}


/* Card da notícia */

.card-noticia-premium {

    background: #fff;

    border-radius: 25px;

    overflow: hidden;

    height: 100%;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.12);

    transition: .4s;

}


/* Hover */

.card-noticia-premium:hover {

    transform: translateY(-10px);

    box-shadow:
        0 25px 45px rgba(0, 0, 0, 0.20);

}


/* Imagem */

.card-noticia-premium img {

    width: 100%;

    height: 250px;

    object-fit: cover;

}


/* Conteúdo */

.conteudo-noticia {

    padding: 30px;

}


/* Título */

.conteudo-noticia h3 {

    color: #003b8e;

    font-size: 1.5rem;

    font-weight: 800;

    margin-bottom: 15px;

}


/* Texto */

.conteudo-noticia p {

    color: #666;

    margin-bottom: 25px;

    line-height: 1.7;

}


/* Botão das notícias */

.btn-nossa {

    display: inline-block;

    background: #0058d4;

    color: #fff;

    padding: 12px 25px;

    border-radius: 30px;

    text-decoration: none;

    font-weight: 700;

    transition: .4s;

}


/* Hover botão */

.btn-nossa:hover {

    background: #ffd000;

    color: #000;

    transform: translateY(-3px);

}


/* ==================================================
   RESPONSIVO
================================================== */

@media (max-width: 768px) {


    .card-programa-premium {

        min-height: auto;

        padding: 30px 20px;

    }


    .card-programa-premium h3 {

        font-size: 1.2rem;

    }


    .conteudo-noticia {

        padding: 25px;

    }


    .conteudo-noticia h3 {

        font-size: 1.3rem;

    }


}


/* ==================================================
   PARCEIROS PREMIUM
================================================== */

.parceiros-premium {

    background: linear-gradient(
        135deg,
        #ffffff,
        #f4f8ff
    );

}


/* Slider dos parceiros */

.parceirosSwiper {

    padding: 20px 10px 70px;

}


/* Card do parceiro */

.card-parceiro-premium {

    background: #ffffff;

    height: 180px;

    border-radius: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    box-shadow:
        0 12px 30px rgba(0, 60, 150, 0.12);

    transition: .4s;

}


/* Efeito hover */

.card-parceiro-premium:hover {

    transform:
        translateY(-10px)
        scale(1.04);

    box-shadow:
        0 20px 45px rgba(0, 60, 150, 0.25);

}


/* Logo do parceiro */

.card-parceiro-premium img {

    max-width: 100%;

    max-height: 100px;

    object-fit: contain;

    filter: grayscale(10%);

    transition: .4s;

}


.card-parceiro-premium:hover img {

    filter: none;

    transform: scale(1.08);

}


/* ==================================================
   ÁREA COMERCIAL PREMIUM
================================================== */

.anuncie-premium {

    position: relative;

    background:
        linear-gradient(
            rgba(0, 40, 90, 0.88),
            rgba(0, 20, 60, 0.92)
        ),
        url("../img/estudio/comercial.jpg");

    background-position: center;

    background-size: cover;

    background-attachment: scroll;

    padding: 110px 20px;

    color: #ffffff;

    text-align: center;

}


.anuncie-premium h2 {

    color: #ffffff;

    text-shadow:
        0 3px 15px #000;

}


.anuncie-premium .subtitulo {

    color: #eeeeee;

    font-size: 1.15rem;

    max-width: 850px;

    line-height: 1.8;

}


/* Botão da área comercial */

.anuncie-premium .btn-nossa {

    background: #ffd000;

    color: #000;

    margin-top: 20px;

    padding: 15px 35px;

    font-size: 1.1rem;

    box-shadow:
        0 12px 30px rgba(0,0,0,.35);

}


.anuncie-premium .btn-nossa:hover {

    background: #ffffff;

    color: #003b8e;

    transform: translateY(-5px);

}


/* ==================================================
   MELHORIAS GERAIS
================================================== */

/* Rolagem suave do site */

html {

    scroll-behavior: smooth;

}


/* Seleção de texto */

::selection {

    background: #ffd000;

    color: #000;

}


/* Imagens mais suaves */

img {

    max-width: 100%;

}


/* ==================================================
   RESPONSIVO FINAL
================================================== */

@media (max-width: 992px) {


    .anuncie-premium {

        background-attachment: scroll;

        padding: 80px 20px;

    }


    .card-parceiro-premium {

        height: 150px;

    }


    .card-parceiro-premium img {

        max-height: 80px;

    }

}


@media (max-width: 576px) {


    .parceiros-premium {

        padding-bottom: 70px;

    }


    .anuncie-premium h2 {

        font-size: 2rem;

    }


    .anuncie-premium .subtitulo {

        font-size: 1rem;

    }


    .anuncie-premium .btn-nossa {

        width: 100%;

        max-width: 320px;

    }

}

/* ==================================================
   NOVO TOPO NOSSA FM
================================================== */


/* ========================================
   LETREIRO DIGITAL FIXO
======================================== */

.letreiro {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 38px;

    background: #000000;

    color: #FFFFFF;

    display: flex;

    align-items: center;

    overflow: hidden;

    white-space: nowrap;

    box-shadow:
        inset 0 0 10px #FFC107;

    z-index: 10000;

}


.letreiro-texto {

    display: inline-block;

    padding-left: 100%;

    animation: passar 60s linear infinite;

    font-family: 'Poppins', sans-serif;

    font-size: 15px;

    font-weight: 600;

}


@keyframes passar {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-100%);

    }

}


/* ========================================
   MENU FIXO ABAIXO DO LETREIRO
======================================== */


.menu-principal {

    position: fixed;

    top: 38px;

    left: 0;

    width: 100%;

    padding: 8px 0;

    background: transparent !important;

    z-index: 9990;

    transition:
        background .4s ease,
        box-shadow .4s ease,
        padding .4s ease;

}


/* Menu quando rolar a página */


.menu-principal.ativo {

    background:
        rgba(0, 58, 150, .90) !important;

    backdrop-filter: blur(10px);

    box-shadow:
        0 8px 25px rgba(0,0,0,.50);

}


/* Remove qualquer fundo interno */


.menu-principal .container,

.topo-radio {

    background: transparent !important;

}

.topo-radio {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    flex-wrap: nowrap;
    min-height: 120px;
    height: auto;
    background: transparent !important;
}


.logo-menu {
    height: 150px;
    display: block;
    margin: 0px;
    animation: flutuar 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.35));
    transition: 0.3s;
}

.logo-menu:hover {
    transform: scale(1.3);
}


.player-topo {
    width: 230px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(0,88,212,1.0);
    padding: 3px 3px;
    border-radius: 36px;
    backdrop-filter: blur(8px);
    box-shadow: 0 5px 5px rgba(0,0,0,0.5);
}

.player-topo audio {
    width: 100%;
    height: 30px;
    border-radius: 30px;
}


/* Menu inferior */

.menu-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    flex: 1;
    margin-top: 0;
    white-space: nowrap;
}

.menu-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: .3s;
}

.menu-links a:hover {
    color: #ffd000;
}

.logo-link {
    flex-shrink: 0;
}


/* Botão contato */

.btn-menu {
    background: linear-gradient(45deg, #ffd000, #ffb300);
    color: #000 !important;
    padding: 5px 10px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 5px 5px rgba(0,0,0,0.5);
    transition: 0.3s;
}

.btn-menu:hover {
    transform: translateY(-5px);
    background: #ffb300;
}


/* Responsivo */

@media (max-width: 768px) {

    .topo-radio {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }

    .logo-menu {
        height: 90px;
    }

    .player-topo {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .menu-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .menu-links a {
        font-size: 0.9rem;
    }

    .btn-menu {
        padding: 6px 15px;
    }

}


.texto-radio {
    text-align: left;
}

.texto-radio h3,
.lista-cidades h3 {
    text-align: center;
}

.lista-cidades {
    text-align: left;
}

.dados-contato p {

    text-align: left;
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: #333;

}

.footer .footer-lista {
    text-align: left;
}

.footer h5 {
    text-align: left;
}

.footer .redes-footer {
    text-align: left;
}

.footer hr {

    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-color: rgba(255,255,255,.3);

}

.footer .col-lg-4:nth-child(2) {
    padding-left: 50px;
}


/* =========================
   FOTO DOS PROGRAMAS
========================= */

.foto-programa {

    width: 195px;
    height: 195px;

    object-fit: cover;

    border-radius: 50%;

    border: 4px solid #0058d4;

    box-shadow: 0 6px 15px rgba(0,0,0,.20);

    margin-bottom: 15px;

}

/* LETREIRO TOPO NOSSA FM */
.letreiro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 38px;
    background: #000;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 2px solid #000;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 10px #FFC107;
    z-index: 10000;
}

.letreiro-texto {
    display: inline-block;
    padding-left: 100%;
    animation: letreiro 60s linear infinite;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
}

@keyframes letreiro {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


.hero-premium {
    margin-top: 190px;
    height: calc(100vh - 190px);
}

/* FORÇA TRANSPARÊNCIA DO TOPO */
.menu-principal,
.menu-principal .container,
.topo-radio {
    background: transparent !important;
}

/* ==========================
   Página em Construção
========================== */

.pagina-construcao {
    background: #000;
    color: #fff;
    margin: 0;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

.construcao-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.logo-construcao {
    width: 100%;
    max-width: 550px;
    margin-bottom: 35px;
}

.construcao-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #00BFFF;
}

.texto-aviso {
    font-size: 22px;
    max-width: 750px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.player-construcao {
    width: 100%;
    max-width: 500px;
    margin-bottom: 35px;
}

.contatos-construcao h3 {
    color: #00BFFF;
    font-size: 26px;
    margin-bottom: 15px;
}

.contatos-construcao p {
    font-size: 22px;
    line-height: 1.8;
}

/* Celular */
@media (max-width: 768px) {

    .logo-construcao {
        max-width: 350px;
    }

    .construcao-container h1 {
        font-size: 28px;
    }

    .texto-aviso {
        font-size: 18px;
    }

    .contatos-construcao p {
        font-size: 18px;
    }

}