/* --- PÁGINA SOBRE NÓS (DESIGN MELHORADO) --- */

/* 1. SEÇÃO TÍTULO DA PÁGINA */
.page-title-section {
    padding: 60px 0;
    text-align: center;
    
    /* Fundo cinza claro com um padrão sutil */
    background-color: #f8f9fa;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cpath d='M14 0 L14 28 M0 14 L28 14' stroke='%23e9ecef' stroke-width='2'/%3E%3C/svg%3E");

    border-bottom: 1px solid #e9ecef;
}
.page-title-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8em;
    color: var(--dark-gray);
    text-align: center;
}


/* 2. SEÇÃO DE HISTÓRIA */
.history-banner-section {
    background-color: var(--secondary-color-darker);
    color: white;
    padding: 80px 0;
}
.history-banner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}
.history-banner-left .highlight-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: block;
}
.history-banner-right h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3em;
    font-weight: 700;
}
.history-banner-right h3 {
    font-size: 1.2em;
    font-weight: 300;
    margin-top: 10px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}
.history-banner-right p {
    font-size: 1.1em;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}
.history-banner-right p:not(:last-child) {
    margin-bottom: 20px;
}


/* 3. SEÇÃO PALAVRA DO DIRETOR */
.director-message-section {
    padding: 80px 0;
    background-color: #fff;
}
.director-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.director-photo img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--light-bg-color);
}
.director-text blockquote {
    font-size: 1.3em;
    font-style: italic;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}
.director-text .director-name {
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
}
.director-text .director-title {
    color: var(--text-color);
}


/* 4. SEÇÃO MISSÃO, VISÃO E VALORES */
.mvv-section {
    padding: 80px 0;
    background-color: #f7f7f7;
}
.mvv-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.mvv-section .section-header h2 {
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 1.5em;
}
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.mvv-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
}
.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(10, 131, 14, 0.1);
}
.mvv-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3em;
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-weight: 600;
}
.mvv-card p {
    font-size: 0.95em;
    line-height: 1.6;
    color: var(--text-color);
}


/* 5. SEÇÃO CTA ESTRUTURA */
.structure-cta-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.structure-cta-section .banner-overlay {
    background-color: rgba(1, 28, 43, 0.6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.cta-box {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px 50px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.cta-box h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 20px;
}
.cta-box p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}
.btn-cta-special {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    transition: all 0.3s ease;
}
.btn-cta-special span {
    transition: transform 0.3s ease;
}
.btn-cta-special:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-cta-special:hover span {
    transform: translateX(5px);
}

/* RESPONSIVIDADE GERAL DA PÁGINA */
@media (max-width: 992px) {
    .history-banner-wrapper, .director-wrapper {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }
    .director-wrapper {
        gap: 20px;
    }
    .director-text blockquote {
        border: none;
        padding-left: 0;
    }
    .mvv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-title-section h1 {
        font-size: 2.2em;
    }
    .history-banner-right h2 {
        font-size: 2em;
    }
    .structure-cta-section {
        height: auto;
        min-height: 70vh;
        padding: 60px 0;
    }
    .cta-box {
        padding: 30px 25px;
    }
    .cta-box h2 {
        font-size: 2.2em;
    }
}