/* ========================= */
/* RESET */
/* ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.6;
}

.section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================= */
/* HERO */
/* ========================= */

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero .left {
    flex: 1;
}

.hero .right {
    flex: 1;
    text-align: center;
}

.hero img {
    max-width: 100%;
    height: auto;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0c2d57;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}

/* ========================= */
/* BOTÕES */
/* ========================= */

.btn {
    display: inline-block;
    background: #00c851;
    color: #fff;
    padding: 18px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn:hover {
    background: #00a944;
}

.small {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

/* ========================= */
/* BENEFÍCIOS / ESCUDO */
/* ========================= */

.row-beneficios {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.beneficios .left {
    flex: 1;
}

.beneficios .right {
    flex: 1;
    text-align: center;
}

.beneficios img {
    max-width: 100%;
    height: auto;
}

/* ========================= */
/* LISTAS */
/* ========================= */

ul {
    list-style: none;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* ========================= */
/* DEPOIMENTOS */
/* ========================= */

.depoimentos {
    background: #f9fbff;
    text-align: center;
}

.depoimentos .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.depoimentos .card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.depoimentos .card:hover {
    transform: translateY(-5px);
}

.foto-depoimento {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
}

.foto-depoimento img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.depoimentos h3 {
    margin-bottom: 10px;
}

/* ========================= */
/* AUTORIDADE */
/* ========================= */

.autoridade {
    text-align: center;
    background: #f4f7fb;
}

.autoridade .btn {
    margin-top: 25px;
    font-size: 18px;
    padding: 18px 40px;
}

/* ========================= */
/* WHATSAPP FIXO MOBILE */
/* ========================= */

.whatsapp-fixo {
    display: none;
}

/* ========================= */
/* RESPONSIVO */
/* ========================= */

@media (max-width: 1000px) {

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .row-beneficios {
        flex-direction: column;
        text-align: center;
    }

    .depoimentos .cards {
        grid-template-columns: 1fr;
    }

    .foto-depoimento {
        height: 220px;
    }

}

@media (max-width: 768px) {

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 20px;
    }

    .whatsapp-fixo {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #00c851;
        color: #fff;
        text-align: center;
        padding: 16px;
        font-weight: 600;
        text-decoration: none;
        z-index: 999;
    }

}

/* ============================= */
/* AJUSTE PARA SUBIR A SEÇÃO DO PROBLEMA */
/* ============================= */

.problema {
    padding-top: 20px !important;
    margin-top: -70px;
}

@media (max-width: 768px) {

    .problema {
        margin-top: -30px;
        padding-top: 10px !important;
    }

}

/* ============================= */
/* AJUSTE MOBILE - SUBIR SEÇÃO PROBLEMA */
/* ============================= */

@media (max-width: 768px) {

    .problema {
        margin-top: -30px;
        padding-top: 10px !important;
    }

}