/* =================================================================== */
/* =================== ESTILOS DE RESPONSIVIDADE =================== */
/* =================================================================== */
@media (max-width: 767.98px) {
    .navbar-nav {
        text-align: center;
    }
}

/* =================================================================== */
/* ======================= ESTILIZAÇÃO GERAL ========================= */
/* =================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* =================================================================== */
/* ======================= COMPONENTES =============================== */
/* =================================================================== */

/* --- Seção História --- */
.history-section {
    padding: var(--fluid-space-4) 0;
}
.history-section h2 {
    color: var(--azul-escuro);
    margin-bottom: 1.5rem;
}
.history-section p {
    color: var(--cinza-escuro);
    line-height: 1.8;
}
.logo-container {
    background-color: var(--azul-escuro);
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.logo-container img {
    max-width: 80%;
    height: auto;
}

/* --- Seção Significado --- */
.meaning-section {
    background-color: var(--azul-escuro);
    color: var(--branco-text);
    padding: var(--fluid-space-4) 0;
}
.meaning-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}
.acronym-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.acronym-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.acronym-letter {
    font-size: clamp(2rem, 7vw, 3rem);
    font-weight: 300;
    color: var(--branco-text);
    margin-right: clamp(0.75rem, 3vw, 1.5rem);
    line-height: 1;
}
.acronym-text h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--branco-text);
}
.acronym-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Seção Pilares (Missão, Visão, Valores) --- */
.pillars-section {
    padding: var(--fluid-space-4) 0;
}
.pillar-card {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--azul-claro);
    display: block;
}
.pillar-card h5 {
    margin-bottom: 1rem;
    color: var(--azul-escuro);
}
.pillar-card p {
    color: var(--cinza-escuro);
}
