/* ==========================================
   FOOTER PREMIUM
========================================== */


.footer{


background:#050b08;


color:white;


padding-top:60px;


}





.footer-container,
.container{


max-width:1200px;


margin:auto;


padding:0 20px;


}





.footer-grid{


display:grid;


grid-template-columns:repeat(4,1fr);


gap:35px;


}




.footer-column h3{


color:#00e676;


margin-bottom:20px;


font-size:20px;


}




.footer-column p{


color:#ccc;


line-height:1.6;


}





.footer-logo img{


width:80px;


margin-bottom:15px;


}





.footer-logo h2{


color:#00e676;


}







/* ==========================================
   LINKS
========================================== */


.footer-column ul{


list-style:none;


padding:0;


}



.footer-column li{


margin-bottom:12px;


}



.footer-column a{


color:#ddd;


text-decoration:none;


transition:.3s;


}



.footer-column a:hover{


color:#00e676;


padding-left:5px;


}







/* ==========================================
   REDES SOCIAIS
========================================== */


.footer-social{


display:flex;


gap:12px;


flex-wrap:wrap;


}



.footer-social a{


width:40px;


height:40px;


display:flex;


align-items:center;


justify-content:center;


border-radius:50%;


background:rgba(255,255,255,.1);


font-size:18px;


}



.footer-social a:hover{


background:#00e676;


color:white;


}









/* ==========================================
   SEGURANÇA
========================================== */


.footer-security{


margin-top:40px;


padding:30px 0;


border-top:1px solid rgba(255,255,255,.1);


}



.security-grid{


display:grid;


grid-template-columns:repeat(4,1fr);


gap:20px;


}



.security-item{


background:rgba(255,255,255,.06);


padding:25px;


border-radius:20px;


text-align:center;


}



.security-item i{


font-size:35px;


color:#00e676;


margin-bottom:15px;


}









/* ==========================================
   ESTATÍSTICAS
========================================== */


.footer-stats{


padding:40px 0;


}



.footer-stats-grid{


display:grid;


grid-template-columns:repeat(4,1fr);


gap:20px;


}




.stat-box{


background:rgba(255,255,255,.08);


border-radius:20px;


padding:25px;


text-align:center;


}



.stat-box h3{


font-size:35px;


color:#00e676;


margin:0;


}










/* ==========================================
   COPYRIGHT
========================================== */


.footer-bottom{


border-top:1px solid rgba(255,255,255,.1);


padding:25px 0;


text-align:center;


}



.footer-bottom strong{


color:#00e676;


}







/* ==========================================
   BOTÃO VOLTAR TOPO
========================================== */


.back-to-top{


position:fixed;


right:25px;


bottom:80px;


width:45px;


height:45px;


border:none;


border-radius:50%;


background:#00e676;


color:white;


cursor:pointer;


display:none;


z-index:999;


}



.back-to-top.show{


display:flex;


align-items:center;


justify-content:center;


}









/* ==========================================
   AVISO RESPONSABILIDADE +18
========================================== */


.thin-warning-bar{


position:fixed;


bottom:0;


left:0;


width:100%;


background:#050b08;


border-top:1px solid #00e676;


z-index:9999;


padding:8px 15px;


box-shadow:0 -5px 20px rgba(0,0,0,.5);


}




.bar-container{


max-width:1200px;


margin:auto;


display:flex;


align-items:center;


justify-content:center;


gap:15px;


}




.age-badge-sm{


background:#d50000;


color:white;


font-weight:bold;


padding:5px 12px;


border-radius:20px;


white-space:nowrap;


}




.bar-text{


font-size:13px;


color:white;


text-align:center;


}





.bar-text strong{


color:#00e676;


}





.bar-link{


color:#00e676;


font-weight:bold;


text-decoration:none;


white-space:nowrap;


}




.bar-link:hover{


text-decoration:underline;


}









/* ==========================================
   RESPONSIVO
========================================== */


@media(max-width:900px){



.footer-grid{


grid-template-columns:repeat(2,1fr);


}



.security-grid{


grid-template-columns:repeat(2,1fr);


}



.footer-stats-grid{


grid-template-columns:repeat(2,1fr);


}



}







@media(max-width:600px){



.footer-grid,


.security-grid,


.footer-stats-grid{


grid-template-columns:1fr;


}




.bar-container{


flex-direction:column;


gap:5px;


}




.bar-text{


font-size:11px;


}



}
/* ================= MENU INFERIOR ================= */

.bottom-menu{
    position:fixed;
    left:0;
    bottom:70px; /* acima da barra +18 */
    width:100%;
    height:70px;
    background:#0b6d33;

    display:flex;
    justify-content:space-around;
    align-items:center;

    border-top:2px solid #19cc5f;
    box-shadow:0 -8px 25px rgba(0,0,0,.35);

    z-index:10000;
}

.bottom-menu a{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:4px;

    color:#fff;
    text-decoration:none;
    font-size:12px;
    font-weight:600;
}

.bottom-menu a i{
    font-size:22px;
}

.bottom-menu a.active,
.bottom-menu a:hover{
    color:#FFD633;
}

.bottom-menu a.active i{
    transform:translateY(-3px);
}

@media (min-width:769px){
    .bottom-menu{
        display:none;
    }
}