/* Configurações Gerais da Seção */
.pagina-empresa {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    color: #333333;
}

/* Títulos das Seções */
.titulo-sessao {
    font-size: 1.8rem;
    color: #004b8d; /* Azul da sua marca */
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Linha decorativa embaixo do título */
.titulo-sessao::after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background-color: #004b8d; /* Laranja da sua marca */
    margin-top: 5px;
}

/* Texto de Descrição */
.texto-descricao {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555555;
    max-width: 800px;
    margin-bottom: 40px;
}

/* Layout dos 3 Cards (Missão, Visão, Valores) */
.cards-mvv {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap; /* Ajusta para celular automaticamente */
}

/* Cada Card Individual */
.card-item {
    flex: 1;
    min-width: 280px;
    background-color: #f9f9f9;
    border-top: 4px solid #004b8d; /* Detalhe azul no topo do card */
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

/* Efeito ao passar o mouse no card */
.card-item:hover {
    transform: translateY(-5px);
    border-top-color: #35d809; /* Muda para laranja ao passar o mouse */
}

.card-item h4 {
    font-size: 1.3rem;
    color: #004b8d;
    margin: 0 0 10px 0;
}

.card-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666666;
    font-style: italic;
    margin: 0;
}

/* Bloco da Sede */
.sede-bloco {
    text-align: center; /* Centraliza o título SEDE e a foto */
    margin-top: 40px;
}

/* Moldura moderna para a foto */
.moldura-foto {
    display: flex;
    max-width: 100%;
    overflow: hidden;
    margin-top: 15px;
    flex-direction: row;
}

.moldura-foto img {
    display: flex;
    height: auto;
    max-height: 500px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
    flex: 1;
    max-width: 33%;
}