.footer{
    background:#F8F5F1;
    color:#111;
    margin-top:0px; /* ou 0px */
    padding-top:35px;
    border-top:none;
}

/* CTA */

.footer-cta{
    background:linear-gradient(
        135deg,
        #D62828,
        #B71C1C
    );
}

.footer-cta-content{
    padding:70px 0;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.footer-cta-tag{
    display:inline-block;

    font-size:12px;
    font-weight:700;
    letter-spacing:2px;

    margin-bottom:15px;

    opacity:.9;
}

.footer-cta h2{
    font-size:42px;
    margin-bottom:15px;
}

.footer-cta p{
    color:rgba(255,255,255,.9);
}

.footer-cta-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.footer-btn-primary{
    background:white;
    color:#D62828;
    text-decoration:none;

    padding:16px 28px;

    border-radius:12px;

    font-weight:700;
}

.footer-btn-secondary{
    border:1px solid rgba(255,255,255,.3);

    color:white;

    text-decoration:none;

    padding:16px 28px;

    border-radius:12px;
}

/* GRID */

.footer-grid{
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr 1fr;

    gap:60px;

    padding:90px 0;
}

.footer-logo{
    width:260px;
    display:block;
}

.footer-column h4{
    margin-bottom:25px;
    font-size:22px;
    color:#111827;
}

.footer-column p{
    color:#6B7280;
    line-height:1.9;
    margin-bottom:18px;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    margin-bottom:14px;
}

.footer a{
    color:#6B7280;
    text-decoration:none;
    transition:.25s;
}

.footer a:hover{
    color:var(--primary);
}

/* STATS */

.footer-stats{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    margin-top:30px;
}

.footer-stats strong{
    display:block;
    color:#D62828;
    font-size:24px;
}

.footer-stats span{
    font-size:13px;
    color:#999;
}

/* BOTÃO */

.footer-contact-btn{
    display:inline-block;

    margin-top:15px;

    background:#D62828;

    color:white !important;

    padding:14px 24px;

    border-radius:50px;

    font-weight:600;
}

.footer-contact-btn:hover{
    background:#B71C1C;
}

/* LINKS */

.footer-links{
    border-top:1px solid #E5E7EB;
    border-bottom:1px solid #E5E7EB;
}

.footer-links .container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:35px;

    padding:22px 0;
}

/* COPYRIGHT */

.footer-bottom{
    text-align:center;
    padding:30px 0;
}

.footer-bottom p{
    color:#6B7280;
}

/* RESPONSIVO */

@media(max-width:992px){

    .footer-cta-content{
        flex-direction:column;
        text-align:center;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-logo-link{
        display:flex;
        justify-content:center;
    }

    .footer-stats{
        justify-content:center;
    }

}
/* CTA FINAL FOOTER */

.footer-final-cta{

    margin-top:20px;
    margin-bottom:5px;
}

.footer-final-content{

    background:linear-gradient(
        135deg,
        #D62828,
        #B71C1C
    );

    border-radius:24px;

    padding:55px;

    text-align:center;

    color:white;
}

.footer-final-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:8px 16px;

    border-radius:50px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;
}

.footer-final-content h3{

    font-size:42px;

    margin-bottom:15px;

    font-weight:800;
}

.footer-final-content p{

    max-width:700px;

    margin:0 auto 30px;

    color:rgba(255,255,255,.9);

    line-height:1.7;
}

.footer-final-form{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

    margin-bottom:25px;
}

.footer-final-form input,
.footer-final-form select{

    height:58px;

    min-width:250px;

    border:none;

    border-radius:14px;

    padding:0 18px;

    font-size:15px;

    outline:none;
}

.footer-final-form button{

    height:58px;

    border:none;

    background:white;

    color:#D62828;

    padding:0 30px;

    border-radius:14px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

.footer-final-form button:hover{

    transform:translateY(-2px);
}

.footer-final-benefits{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

    font-size:14px;

    font-weight:600;
}

@media(max-width:768px){

    .footer-final-content{

        padding:35px 25px;
    }

    .footer-final-content h3{

        font-size:30px;
    }

    .footer-final-form{

        flex-direction:column;
    }

    .footer-final-form input,
    .footer-final-form select,
    .footer-final-form button{

        width:100%;
    }
}
/* CTA FINAL FOOTER */

.footer-final-content{

    background:#F8F5F1;

    border:1px solid #E7DED2;

    border-radius:24px;

    padding:40px;

    text-align:center;

    color:#111827;

    box-shadow:
    0 10px 35px rgba(0,0,0,.05);
}

.footer-final-tag{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:#FFF;

    border:1px solid #E7DED2;

    color:#D62828;

    padding:10px 18px;

    border-radius:50px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;
}

.footer-final-content h3{

    font-size:40px;

    font-weight:800;

    color:#111827;

    margin-bottom:18px;

    line-height:1.1;
}

.footer-final-content p{

    max-width:700px;

    margin:0 auto 25px;

    color:#6B7280;

    font-size:17px;

    line-height:1.8;
}

.footer-final-form{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

    margin-bottom:30px;
}

.footer-final-form input,
.footer-final-form select{

    height:54px;

    min-width:220px;

    padding:0 20px;

    border:1px solid #E5E7EB;

    border-radius:14px;

    background:#FFFFFF;

    font-size:15px;

    font-family:'Inter', sans-serif;

    color:#111827;

    outline:none;

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    transition:.25s;
}

.footer-final-form input:focus,
.footer-final-form select:focus{

    border-color:#D62828;

    box-shadow:0 0 0 4px rgba(214,40,40,.08);
}

.footer-final-form button{

    height:54px;

    border:none;

    background:#D62828;

    color:white;

    padding:0 30px;

    border-radius:14px;

    font-weight:700;

    cursor:pointer;

    transition:.25s;
}

.footer-final-form button:hover{

    background:#B71C1C;

    transform:translateY(-2px);
}

.footer-final-benefits{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    color:#374151;

    font-size:14px;

    font-weight:600;
}
.footer-brand{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}
.footer-column h4{
    text-align:center;
    margin-bottom:25px;
}
.footer-column ul{
    list-style:none;
}

.footer-column ul li{
    margin-bottom:14px;
}
.footer-sectors h4{
    text-align:center;
}

.footer-sectors ul{
    display:grid;
    grid-template-columns:repeat(2,max-content);
    justify-content:center;
    gap:12px 40px;
}

.footer-sectors ul li{
    margin:0;
}
.footer-contacts{
    text-align:center;
}

.footer-contacts p{
    margin-left:auto;
    margin-right:auto;
}

.footer-contact-btn{
    margin-top:20px;
}
/* CENTRAR TODAS AS COLUNAS */

.footer-column{
    text-align:center;
}

.footer-column h4{
    text-align:center;
}

.footer-column ul{
    padding:0;
}

.footer-brand{
    align-items:center;
    text-align:center;
}

.footer-brand p{
    margin-left:auto;
    margin-right:auto;
    max-width:420px;
}