/* ======= SECTION MENTORIA ======= */

#mentoria {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    min-height: 100vh;
    text-align: center;
}

/* Título e subtítulo */
.mentoria-title {
    font-size: 2.5rem;
    color: #8126c9;
    font-weight: bold;
}

.mentoria-subtitle {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #ddd;
    max-width: 900px;
    line-height: 1.5;
}

/* Container dos cards */
#mentoria-cards {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* Cada card */
.mentoria-card {
    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;
}

/* Hover com animação suave */
.mentoria-card:hover {
    transform: scale(1.04);
    box-shadow: 0px 0px 16px 6px #6b1ea5;
}

/* Imagens */
.mentoria-img {
    width: 100%;
    margin-top: 7px;
    margin-bottom: 5px;
}

/* Título dentro do card */
.mentoria-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

/* Botão */
.mentoria_btn {
    margin-top: 40px;
}

.btn-mentoria {
    display: inline-block;
    padding: 14px 34px;
    background-color: #8126c9;
    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-mentoria:hover {
    background-color: #6b1ea5;
    transform: scale(1.07);
}

/* RESPONSIVO */
@media screen and (max-width: 1170px) {
    #mentoria-cards {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .btn-mentoria{
        width: 90%;
    }

    .mentoria-card {
        width: 75%;
    }
}
