/* ========================================
   RODAPÉ PADRÃO SURG
======================================== */

footer.rodape{
    background:var(--azul);
    color:white;
    border-top:5px solid var(--verde);
    margin-top:70px;
    text-align:center;
}

.rodape-container{
    max-width:1200px;
    margin:auto;
    padding:35px 20px 30px;
}

.rodape-logo{
    height:80px;
    background:white;
    border-radius:12px;
    padding:10px;
    margin-bottom:18px;
}

.rodape h2{
    font-size:2rem;
    letter-spacing:2px;
    margin-bottom:8px;
}

.rodape-subtitulo{
    color:#d7d7ff;
    margin-bottom:25px;
}

.rodape-linha{
    width:90px;
    height:3px;
    background:var(--verde);
    margin:25px auto 18px;
    opacity:.7;
}

.rodape-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:35px;
    text-align:left;
    margin-top:30px;
}

.rodape-col h3{
    color:var(--verde);
    margin-bottom:15px;
}

.rodape-col a{
    display:block;
    color:white;
    text-decoration:none;
    margin-bottom:9px;
}

.rodape-col a:hover{
    color:#d7d7ff;
}

.rodape-col p{
    line-height:1.8;
}

.rodape-base{
    border-top:1px solid rgba(255,255,255,.18);
    margin-top:35px;
    padding-top:14px;
    color:#d7d7ff;
    font-size:.9rem;
    line-height:1.6;
}

.rodape-base strong{
    color:white;
}

@media(max-width:768px){
    .rodape-grid{
        text-align:center;
    }
}