/* ===============================
   FOOTER COMERCIAL
   =============================== */

.footer-commercial {
    background-color: #0f3d2e;
    color: #e6f2ed;
    font-size: 15px;
    line-height: 1.6;
}

/* ===============================
   CTA SUPERIOR
   =============================== */

.footer-cta {
    background: linear-gradient(135deg, #1f7a5a, #145c43);
    text-align: center;
    padding: 60px 20px;
}

.footer-cta h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-cta p {
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 16px;
    color: #e9f7f2;
}

.footer-cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===============================
   BOTÕES
   =============================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn i {
    font-size: 18px;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #083c2a;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #0f3d2e;
}

.btn-block {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

/* ===============================
   CONTEÚDO PRINCIPAL
   =============================== */

.footer-main {
    padding: 60px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 17px;
    margin-bottom: 18px;
    position: relative;
}

.footer-column h4::after {
    content: "";
    width: 40px;
    height: 3px;
    background-color: #25d366;
    display: block;
    margin-top: 8px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #cfe8df;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #25d366;
}

.footer-highlight {
    margin-top: 15px;
    padding-left: 15px;
    border-left: 3px solid #25d366;
    font-size: 14px;
    color: #bfe6d6;
}

.footer-link-strong {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: #25d366;
    text-decoration: none;
}

.footer-link-strong:hover {
    text-decoration: underline;
}

/* ===============================
   CONTATO
   =============================== */

.footer-contact p {
    margin-bottom: 12px;
}

.footer-contact a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #25d366;
}

/* ===============================
   FAIXA DE CONFIANÇA
   =============================== */

.footer-trust {
    background-color: #0b2f23;
    text-align: center;
    padding: 15px 20px;
    font-size: 14px;
}

/* ===============================
   RODAPÉ FINAL
   =============================== */

.footer-bottom {
    background-color: #09261c;
    padding: 25px 20px;
    font-size: 13px;
}

.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    color: #a7d7c4;
}

.footer-legal a {
    color: #a7d7c4;
    margin-left: 15px;
    text-decoration: none;
    font-size: 13px;
}

.footer-legal a:hover {
    color: #25d366;
}

/* ===============================
   RESPONSIVO
   =============================== */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-cta h2 {
        font-size: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-grid {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal a {
        margin: 0 10px;
    }
}
.footer-security {
    background-color: #0c3326;
    padding: 30px 20px;
}

.footer-security-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    flex: 1;
    min-width: 250px;
}

.security-item i {
    font-size: 22px;
    color: #25d366;
    margin-top: 4px;
}

.security-item strong {
    display: block;
    color: #ffffff;
}

.security-item p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #cfe8df;
}
