/* Principal (Main) */
.conteudo 
{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: rgb(36, 119, 96);
    padding: 120px 20px 80px;
    box-sizing: border-box;
    text-align: center;
}

/* Titulo e paragrafo */
.texto-home 
{
    max-width: 900px;
    margin-bottom: 40px;
}

.titulo-principal 
{
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: azure;
    padding: 30px;
    letter-spacing: 1.2px;
}

.paragrafo-principal 
{
    color: azure;
    font-size: 20px;
    max-width: 800px;
    line-height: 1.6;
    padding: 10px;
    text-align: justify;
}

/* Bloco Missão e Valores */
.missao-valores 
{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    color: azure;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* BlocoMissão */
.missao
{
    flex: 1;
    max-width: 380px;
    border-radius: 6px;
    border: 1px solid azure;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: justify;
}

/* Bloco Valores */
.valores 
{
    flex: 1;
    max-width: 380px;
    border-radius: 6px;
    border: 1px solid azure;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: justify;
}

/* Títulos dos blocos */
.missao h2, .valores h2 
{
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    font-size: 28px;
    color: azure;
    margin-bottom: 20px;
    text-align: center;
}

/* Parágrafos dos blocos */
.missao p, .valores p 
{
    font-size: 18px;
    line-height: 1.5;
    color: azure;
    text-align: center;
}

/* Efeito sobre o bloco Missão */
.missao:hover 
{
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Efeito sobre o Valores */
.valores:hover 
{
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* ... código existente ... */

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 768px) {
    .conteudo {
        padding: 100px 15px 60px;
    }
    
    .titulo-principal {
        font-size: 28px;
        padding: 20px 15px;
    }
    
    .paragrafo-principal {
        font-size: 18px;
        text-align: center;
        padding: 10px 15px;
    }
    
    .missao-valores {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }
    
    .missao, .valores {
        max-width: 100%;
        min-height: auto;
    }
    
    .missao h2, .valores h2 {
        font-size: 24px;
    }
    
    .missao p, .valores p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .titulo-principal {
        font-size: 24px;
        padding: 15px 10px;
    }
    
    .paragrafo-principal {
        font-size: 16px;
        padding: 8px 10px;
    }
    
    .missao, .valores {
        padding: 15px;
    }
    
    .missao h2, .valores h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
}