#sobre {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

#sobre h2 {
    font-size: 30px;
    margin: 20px 0;
    color: #FF460A;
    font-weight: bold;
}

#sobre p{
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    text-align: center;
    margin-bottom: 15px;
}

.sobre-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.sobre-cont h2{
    color: #FF460A;
    font-weight: bold;
    font-size: 20px;
}

.sobre-cont p{
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    text-align: left;
    margin-bottom: 15px;
}

/* Seção de Missão, Visão e Valores */
.mvv-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mvv-box {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s;
}

.mvv-box:hover {
    box-shadow: 0 8px 16px rgba(0, 167, 100, 0.2);
    transform: translateY(-5px);
}

.mvv-box h3 {
    color: #FF460A;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF460A;
}

.mvv-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}