/*==================================================
    REDE BIG-FM BRASIL 2.0
    Desenvolvido por STUDIOFESTY BRASIL
==================================================*/

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

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    margin:0;
    font-family:Poppins,sans-serif;

    background:url("../https://radiobigfm.top/img/ouvindo.png") center center no-repeat fixed;

    background-size:cover;

    color:white;

}

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

:root{

    --rosa:#ff2fa8;

    --rosa-claro:#ff7ecf;

    --lilas:#b45cff;

    --amarelo:#ffd54a;

    --branco:#ffffff;

    --cinza:#bdbdbd;

    --escuro:#050505;

    --preto:#000000;

    --glass:rgba(255,255,255,.08);

    --borda:rgba(255,255,255,.12);

}

/*=========================
FUNDO
=========================*/

.background-slider{

    position:fixed;

    inset:0;

    z-index:-10;

    overflow:hidden;

}

.background-slider .bg{

    position:absolute;

    width:100%;

    height:100%;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    opacity:0;

    transition:opacity 2s ease;

}

.background-slider .bg.active{

    opacity:1;

}

.background-slider::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.75)
    );

}

/*=========================
CONTAINER
=========================*/

.container{

    width:92%;

    max-width:1400px;

    margin:auto;

}

/*=========================
HEADER
=========================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    backdrop-filter:blur(18px);

    background:rgba(0,0,0,.45);

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.4s;

}

header.scroll{

    background:#050505ee;

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

}

header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:85px;

}

/*=========================
LOGO
=========================*/

.logo img{

    width:135px;

    transition:.35s;

}

.logo img:hover{

    transform:scale(1.05);

}

/*=========================
MENU
=========================*/

nav ul{

    display:flex;

    gap:35px;

    list-style:none;

}

nav a{

    color:#FFF;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    position:relative;

    transition:.3s;

}

nav a::after{

    content:"";

    position:absolute;

    bottom:-6px;

    left:0;

    width:0;

    height:2px;

    background:var(--rosa);

    transition:.3s;

}

nav a:hover{

    color:var(--rosa-claro);

}

nav a:hover::after{

    width:100%;

}

/*=========================
BOTÃO OUVIR
=========================*/

.btn-ouvir{

    padding:14px 30px;

    border-radius:50px;

    text-decoration:none;

    color:#FFF;

    background:linear-gradient(
        135deg,
        var(--rosa),
        var(--lilas)
    );

    font-weight:700;

    transition:.3s;

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

}

.btn-ouvir:hover{

    transform:translateY(-4px);

    box-shadow:0 0 40px rgba(255,0,180,.7);

}
/*==================================================
        HERO PRINCIPAL
==================================================*/

.hero{

    position:relative;

    width:100%;

    height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.82) 15%,
        rgba(0,0,0,.55) 55%,
        rgba(0,0,0,.20) 100%
    );

    z-index:1;

}

/*=========================================
CONTEÚDO
=========================================*/

.hero-content{

    position:relative;

    z-index:2;

    max-width:720px;

    margin-left:8%;

    animation:fadeHero 1.3s ease;

}

@keyframes fadeHero{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================================
BADGE
=========================================*/

.badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(255,255,255,.08);

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

    backdrop-filter:blur(12px);

    color:#FFF;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;

}

/*=========================================
TÍTULO
=========================================*/

.hero h1{

    font-size:72px;

    font-weight:800;

    line-height:1.05;

    margin-bottom:25px;

    color:#FFF;

    text-shadow:0 0 30px rgba(255,47,168,.40);

}

.hero h1 span{

    color:var(--rosa);

}

/*=========================================
SUBTÍTULO
=========================================*/

.hero p{

    font-size:22px;

    color:#dddddd;

    margin-bottom:45px;

    max-width:620px;

}

/*=========================================
BOTÕES
=========================================*/

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:18px 38px;

    border-radius:60px;

    text-decoration:none;

    background:linear-gradient(
        135deg,
        var(--rosa),
        var(--lilas)
    );

    color:#FFF;

    font-weight:700;

    transition:.35s;

    box-shadow:0 15px 45px rgba(255,47,168,.35);

}

.btn-primary:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 60px rgba(255,47,168,.60);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:18px 38px;

    border-radius:60px;

    text-decoration:none;

    color:#FFF;

    border:2px solid rgba(255,255,255,.20);

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(10px);

    transition:.35s;

}

.btn-secondary:hover{

    background:rgba(255,255,255,.12);

    transform:translateY(-6px);

}

/*=========================================
INDICADOR DE ROLAGEM
=========================================*/

.scroll-indicator{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    z-index:3;

    font-size:34px;

    color:#FFF;

    animation:scrollDown 2s infinite;

}

@keyframes scrollDown{

    0%{

        transform:translate(-50%,0);

        opacity:0;

    }

    50%{

        opacity:1;

    }

    100%{

        transform:translate(-50%,18px);

        opacity:0;

    }

}

/*=========================================
EFEITO DE BRILHO
=========================================*/

.hero::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(255,47,168,.12);

    filter:blur(140px);

    right:-120px;

    top:-100px;

    animation:glow1 8s infinite alternate;

}

.hero::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(180,92,255,.10);

    filter:blur(120px);

    left:-120px;

    bottom:-100px;

    animation:glow2 10s infinite alternate;

}

@keyframes glow1{

    from{

        transform:translateY(0);

    }

    to{

        transform:translateY(60px);

    }

}

@keyframes glow2{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(80px);

    }

}
/*==================================================
        REDE BIG-FM BRASIL 2.0
        PARTE 3
        CIDADES • PLAYER • PROGRAMAÇÃO
==================================================*/

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

section{

    padding:100px 0;

    position:relative;

}

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

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:var(--rosa);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:14px;

    font-weight:700;

}

.section-title h2{

    font-size:48px;

    margin-top:15px;

    margin-bottom:20px;

    font-weight:800;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#cfcfcf;

    font-size:18px;

}

/*=========================================
ESCOLHA SUA RÁDIO
=========================================*/

.cities{

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(12px);

}

.cidade-box{

    max-width:850px;

    margin:auto;

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    justify-content:center;

}

#cidade{

    flex:1;

    min-width:280px;

    padding:18px 22px;

    border:none;

    border-radius:60px;

    background:rgba(255,255,255,.08);

    color:#FFF;

    font-size:17px;

    outline:none;

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

}

#cidade option{

    color:#000;

}

#ouvirCidade{

    padding:18px 45px;

    border:none;

    border-radius:60px;

    cursor:pointer;

    background:linear-gradient(
        135deg,
        var(--rosa),
        var(--lilas)
    );

    color:#FFF;

    font-size:17px;

    font-weight:700;

    transition:.35s;

}

#ouvirCidade:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 40px rgba(255,0,180,.45);

}

/*=========================================
PLAYER
=========================================*/

.player-section{

    padding:120px 0;

}

.player-card{

    max-width:900px;

    margin:auto;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

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

    border-radius:30px;

    padding:45px;

    text-align:center;

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

}

.player-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:35px;

}

.status-live{

    display:flex;

    align-items:center;

    gap:10px;

    color:#FFF;

    font-weight:700;

}

.live-dot{

    width:12px;

    height:12px;

    background:red;

    border-radius:50%;

    animation:pulse 1s infinite;

}

@keyframes pulse{

    0%{

        box-shadow:0 0 0 0 rgba(255,0,0,.8);

    }

    100%{

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

    }

}

.listeners{

    color:#DDD;

    font-weight:600;

}

.player-logo img{

    width:180px;

    margin-bottom:30px;

}

#musicaAtual{

    font-size:32px;

    font-weight:700;

    margin-bottom:10px;

}

#locutorAtual{

    color:var(--rosa-claro);

    margin-bottom:30px;

}

.player-card audio{

    width:100%;

    margin-bottom:30px;

}

.player-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.player-buttons button{

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:linear-gradient(
        135deg,
        var(--rosa),
        var(--lilas)
    );

    color:#FFF;

    font-size:22px;

    transition:.35s;

}

.player-buttons button:hover{

    transform:scale(1.08);

}

#volume{

    width:220px;

}

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

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.card{

    background:rgba(255,255,255,.06);

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

    backdrop-filter:blur(16px);

    border-radius:25px;

    padding:35px;

    text-align:center;

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

    border-color:var(--rosa);

    box-shadow:0 20px 45px rgba(255,0,170,.25);

}

.card i{

    font-size:52px;

    color:var(--rosa);

    margin-bottom:25px;

}

.card h3{

    font-size:26px;

    margin-bottom:12px;

}

.card p{

    color:#DDD;

    margin-bottom:12px;

}

.card span{

    color:var(--amarelo);

    font-weight:600;

}
/*==================================================
        REDE BIG-FM BRASIL 2.0
        PARTE 4
        NOTÍCIAS • GALERIA • CONTATO • RODAPÉ
==================================================*/

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

.news{

    background:rgba(255,255,255,.02);

}

.news .cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

    gap:35px;

}

.news .card{

    overflow:hidden;

    padding:0;

}

.news .card img{

    width:100%;

    height:230px;

    object-fit:cover;

    transition:.6s;

}

.news .card:hover img{

    transform:scale(1.08);

}

.card-content{

    padding:30px;

}

.card-content .badge{

    display:inline-block;

    margin-bottom:18px;

}

.card-content h3{

    font-size:24px;

    margin-bottom:20px;

    color:#FFF;

}

.card-content a{

    color:var(--rosa);

    text-decoration:none;

    font-weight:700;

}

.card-content a:hover{

    color:var(--amarelo);

}

/*=========================================
PATROCINADORES
=========================================*/

.patrocinadores-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.patrocinadores-grid img{

    width:100%;

    border-radius:20px;

    transition:.4s;

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

}

.patrocinadores-grid img:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(255,0,150,.25);

}

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

.galeria-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:20px;

}

.galeria-grid img{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:20px;

    transition:.5s;

}

.galeria-grid img:hover{

    transform:scale(1.05);

    box-shadow:0 20px 45px rgba(255,0,170,.35);

}

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

form{

    max-width:850px;

    margin:auto;

}

form input,

form textarea{

    width:100%;

    padding:18px;

    margin-bottom:20px;

    border:none;

    border-radius:18px;

    background:rgba(255,255,255,.08);

    color:#FFF;

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

    font-size:16px;

}

form textarea{

    resize:none;

}

form button{

    padding:18px 45px;

    border:none;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--rosa),
        var(--lilas)
    );

    color:#FFF;

    cursor:pointer;

    font-size:18px;

    font-weight:700;

    transition:.35s;

}

form button:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(255,0,170,.35);

}

.contato-info{

    margin-top:60px;

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:40px;

}

.contato-info div{

    display:flex;

    align-items:center;

    gap:10px;

    color:#DDD;

    font-size:18px;

}

.contato-info i{

    color:var(--rosa);

    font-size:24px;

}

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

footer{

    margin-top:120px;

    padding:80px 0 40px;

    background:#030303;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-logo{

    width:170px;

    margin-bottom:25px;

}

footer h3{

    font-size:34px;

    margin-bottom:15px;

}

footer p{

    color:#BBB;

    margin-bottom:15px;

}

.redes{

    display:flex;

    justify-content:center;

    gap:18px;

    margin:35px 0;

}

.redes a{

    width:55px;

    height:55px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#FFF;

    text-decoration:none;

    transition:.35s;

}

.redes a:hover{

    background:linear-gradient(
        135deg,
        var(--rosa),
        var(--lilas)
    );

    transform:translateY(-6px);

}

footer hr{

    margin:40px auto;

    width:220px;

    border:none;

    height:1px;

    background:rgba(255,255,255,.10);

}

/*=========================================
BOTÃO TOPO
=========================================*/

#topo{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--rosa),
        var(--lilas)
    );

    color:#FFF;

    text-decoration:none;

    font-size:22px;

    z-index:999;

    transition:.35s;

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

}

#topo:hover{

    transform:translateY(-6px) scale(1.08);

}

/*=========================================
SELEÇÃO DE TEXTO
=========================================*/

::selection{

    background:var(--rosa);

    color:#FFF;

}

/*=========================================
SCROLLBAR
=========================================*/

::-webkit-scrollbar{

    width:12px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        var(--rosa),
        var(--lilas)
    );

    border-radius:30px;

}
/*=========================================
MENU MOBILE
=========================================*/

.menu-toggle{

    display:none;

    width:45px;

    height:45px;

    background:none;

    border:none;

    cursor:pointer;

    flex-direction:column;

    justify-content:center;

    gap:6px;

}

.menu-toggle span{

    width:30px;

    height:3px;

    background:#FFF;

    border-radius:5px;

    transition:.3s;

}

.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(8px);

    visibility:hidden;

    opacity:0;

    transition:.35s;

    z-index:998;

}

.menu-overlay.ativo{

    visibility:visible;

    opacity:1;

}

/*=========================================
FUNDO DO SITE
=========================================*/

.background-slider{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    z-index:-999;

}

.background-slider .bg{

    position:absolute;

    width:100%;
    height:100%;

    background-size:cover;

    background-position:center;

    opacity:0;

    transition:2s;

}

.background-slider .active{

    opacity:1;

}