#consultoria {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    min-height: 100vh;
    text-align: center;
}

/* Container dos 3 cards */
#resultados {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap; /* garante que não quebre no desktop */
}

/* Cada card */
.resultado {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 20px;
    width: 25%;
    min-width: 260px;
    border-radius: 20px;
    box-shadow: 0px 0px 12px 4px #8126c9;
    gap: 18px;
    transition: transform .3s ease, box-shadow .3s ease;
}

/* Efeito hover bonito */
.resultado:hover {
    transform: scale(1.04);
    box-shadow: 0px 0px 16px 6px #6b1ea5;
}

/* Imagens dos cards */
.resultado img {
    width: 100%;
    margin-top: 7px;
    margin-bottom: 5px;
    border-radius: 0px;
}

/* Título dentro do card */
.resultado-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

/* Container do botão */
.consultoria_btn {
    margin-top: 40px;
}

/* Estilo do botão */
.btn-consultoria {
    display: inline-block;
    padding: 14px 34px;
    background-color: #8126c9; /* mesmo roxo dos cards */
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
}

/* Hover */
.btn-consultoria:hover {
    background-color: #6b1ea5;
    transform: scale(1.07);
}

@media screen and (max-width: 1170px){
     #resultados {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .resultado {
        width: 75%; /* maior no mobile */
    }
}