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

body {
    font-family: 'Inter', Arial, sans-serif;
    background: linear-gradient(180deg, #eef2f7 0%, #e4eaf3 100%);
    color: #2E3135;
}

html {
    scroll-behavior: smooth;
}


/* HEADER */
.header {
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 1px solid #eee;
    z-index: 1000;
    text-align: center;
    padding: 20px 0; /* MAIS RESPIRO */
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.header.scrolled {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.logo img {
    max-width: 260px;
    margin: 5px auto;
}


/* HERO */
.hero {
    background: linear-gradient(135deg, #1E3A8A 0%, #1D4ED8 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
}

.hero::after {
    content:"";
    position:absolute;
    inset:0;
    background: rgba(15,23,42,0.85);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero h2 {
    color: #C79A3B;
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.6;
}

/* BOTÃO */
.btn-whatsapp {
    margin-top: 20px;
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
}

/* SECTIONS */
.section {
    background: #ffffff;
    padding: 90px 20px;
    text-align: center;
}

.section.alt {
    background: #F1F5F9;
}


.section h2 {
    font-size: 30px;
    margin-bottom: 25px;
    font-weight: 700;
}


.section.highlight {
    background: #e8e3d8;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}


/* CARDS */
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 30px 25px; /* um pouco mais de respiro vertical */
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.card.show {
    opacity: 1;
    transform: translateY(0);
}

.card svg {
    width: 42px;
    height: 42px;
    stroke: #C79A3B;
    stroke-width: 1.8;
    margin-bottom: 15px;
    transition: 0.3s;
}

.card:hover svg {
    stroke: #2E3135;
    margin-bottom: 15px;
}


.card h3 {
    margin-bottom: 10px;
    font-size: 17px;
}

.card p {
    line-height: 1.6;
    color: #555;
    display: block;

}



.card-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    color: #C79A3B;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.card-link:hover {
    color: #a87d2f;
}




.dividas-container {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.dividas-text {
    max-width: 1000px;
    margin: 0 auto;
}

.dividas-text p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.microcopy {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 10px;
}





.autoridade {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.autoridade .item {
    text-align: center;
    max-width: 200px;
}

.autoridade h3 {
    font-size: 32px;
    color: #C79A3B;
    margin-bottom: 10px;
    font-weight: 700;
}

.autoridade p {
    font-size: 14px;
    color: #555;
}




/* NÚMEROS */
.numeros {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.numero {
    text-align: center;
}

.numero h3 {
    font-size: 32px;
    color: #C79A3B;
}

.numero p {
    font-size: 14px;
    color: #555;
}

/* DEPOIMENTOS */
.depoimentos {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-top: 50px;
}

.depoimento {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    font-style: italic;
}

.depoimento strong {
    display: block;
    margin-top: 10px;
    font-style: normal;
    color: #2E3135;
}





.atualize-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

.atualize-text {
    flex: 1;
}

.atualize-text h2 {
    margin-bottom: 15px;
}

.atualize-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.atualize-image {
    flex: 1;
    text-align: center;
}

.atualize-image img {
    max-width: 300px;
    transition: 0.3s;
}


.atualize-image img:hover {
    transform: scale(1.05);
}



/* BOTÕES */
.atualize-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center; /* CENTRALIZA */
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px; /* força mesma altura */
    padding: 0 22px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    background: #C79A3B;
    color: white;
}

.btn-gold:hover {
    background: #a87d2f;
}

/* RESPONSIVO */
@media (max-width: 768px) {

    .atualize-container {
        flex-direction: column;
        text-align: center;
    }

    .atualize-buttons {
        justify-content: center;
    }
}








/* ===== FOOTER ===== */
/* FOOTER */
/* FOOTER */
.footer {
    background: #1c1f23;
    color: #cbd5e1;
    padding: 40px 20px;
    text-align: center;
}

/* ENDEREÇO */
.footer-address {
    font-size: 14px;
    margin-bottom: 20px;
}

/* BOTÕES */
.footer-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    background: rgba(255,255,255,0.05);
    color: #ccc;
    transition: 0.3s;
}

.footer-btn svg {
    width: 16px;
    height: 16px;
}

/* HOVER */
.footer-btn:hover {
    background: #C79A3B;
    color: white;
}

/* WHATSAPP DESTACADO */
.footer-btn.whatsapp {
    background: #25D366;
    color: white;
}

.footer-btn.whatsapp:hover {
    background: #1ebe5d;
}

/* FINAL */
.footer-bottom {
    margin-top: 25px;
    font-size: 12px;
    color: #777;
}





/* WHATSAPP FIXO */
.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index: 9999;
    animation: pulse 2s infinite;

}

.whatsapp:hover {
    animation: none;
    transform: scale(1.1);
}

/* ANIMAÇÃO */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp img {
    width: 50px;
}

/* RESPONSIVO */
@media (max-width: 768px) {


    .cards {
        flex-direction: column;
        align-items: center; /* 🔥 ISSO RESOLVE */
    }
}


/* ESTADO INICIAL */
.fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

/* QUANDO APARECE */
.fade.show {
    opacity: 1;
    transform: translateY(0);
}