/* Estilos adicionais para a página Sobre */
.sobre-img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.secao_apresentacao h2 {
    color: #1b3675;
    font-size: 26px;
    margin-bottom: 15px;
}

.secao_apresentacao p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Missão, Visão e Valores */
.secao_missao_visao_valores {
    max-width: 900px;
    margin: 50px auto;
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.secao_missao_visao_valores h2 {
    color: #1b3675;
    font-size: 26px;
    margin-bottom: 20px;
}

.secao_missao_visao_valores div {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.secao_missao_visao_valores h3 {
    color: #fdb203;
    font-size: 22px;
    margin-bottom: 10px;
}

.secao_missao_visao_valores ul {
    list-style: none;
    padding: 0;
}

.secao_missao_visao_valores li {
    font-size: 18px;
    color: #555;
    margin-bottom: 8px;
}

/* Equipe */
.secao_equipe {
    max-width: 900px;
    margin: 50px auto;
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.equipe-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.membro-equipe {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.membro-equipe:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.membro-equipe img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.membro-equipe h3 {
    color: #1b3675;
    font-size: 20px;
}

.membro-equipe p {
    color: #555;
    font-size: 16px;
}

/* Responsividade */
@media (max-width: 768px) {
    .equipe-container {
        flex-direction: column;
        align-items: center;
    }

    .membro-equipe {
        max-width: 100%;
    }

    .secao_apresentacao,
    .secao_missao_visao_valores,
    .secao_equipe {
        padding: 20px;
    }
}