/* Estrutura geral */
body {
    background-image: url('../img/fundo_princ.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* Títulos */
.section-title {
    font-weight: 700;
    color: #146e9b;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Card Quem Somos */
.quem-somos-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(3px);
}

.quem-img {
    border-radius: 15px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.quem-texto {
    font-size: 1rem;
    color: #146e9b;
    line-height: 1.55;
    font-weight: 500;
}

/* Cards de setores */
.setor-card {
    background: rgba(255, 255, 255, 0.80);
    border-left: 5px solid #3898c7;
    transition: 0.25s;
}

.setor-card:hover {
    transform: translateY(-5px);
    background: rgba(56, 152, 199, 0.15);
}

.setor-titulo {
    font-weight: bold;
    color: #146e9b;
    text-transform: uppercase;
}
