 .container-como-ajudamos {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    border: 0;
    min-height: auto;
    background-image:
        url('../imagens/background-como-ajudamos1.webp'),
        url('../imagens/background-como-ajudamos3.webp'),
        url('../imagens/background-como-ajudamos2.webp');
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 100% auto, 100% auto, 100% auto;
    background-position:
        center top,
        center 33.333%,
        center 96.666%;
}

.content-como-ajudamos {
    display: flex;
    flex-direction: column;
    padding: 200px 80px;
}

.content-como-ajudamos h2 {
    font-family: "Caveat", cursive;
    color: #000000;
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: -2.5px;
    margin-bottom: 20px;
}

.content-como-ajudamos p {
    font-family: "Noto Serif", serif;
    font-weight: 600;
    font-size: 1.3rem;
    max-width: 90%;
    line-height: 1.6;
    color: #000000;
    text-indent: 40px;
    margin-bottom: -18px;
}

.topicos {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}

.topico {
    display: flex;
    flex-direction: column;
    width: 350px;
    text-align: center;
    background-color: #e9f3e0;
    height: 440px;
    border-radius: 30px;
}

.topico img {
    height: 200px;
    width: 350px;
    border-radius: 30px 30px 0 0;
}

.topico h3 {
    font-family: "Noto Serif", serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #545f36;
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 10px 0;
}

.topico p {
    font-size: 1rem;
} 

@media (max-width: 768px) {

    .container-como-ajudamos {
        background-image: url('../imagens/background-como-ajudamos3.webp');
        background-size: cover;
        background-position: center;
    }

    .content-como-ajudamos {
        padding: 60px 20px;
        text-align: center;
        align-items: center;
    }

    .content-como-ajudamos h2 {
        font-size: 2.5rem;
    }

    .content-como-ajudamos p {
        max-width: 100%;
        font-size: 1.1rem;
        text-indent: 0;
        margin-bottom: 10px;
    }

    /* 🔥 Cards em coluna */
    .topicos {
        flex-direction: column;
        gap: 25px;
        margin-top: 40px;
        align-items: center;
    }

    .topico {
        width: 100%;
        max-width: 350px;
        height: auto;
        padding-bottom: 15px;
    }

    .topico img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
}