/* ==========================================================================
   SOBRE.CSS  —  Exclusivo da página sobre (sobre.html)
   ========================================================================== */

/* ==========================================
   EMPRESA
========================================== */
.about-company {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.about-company-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.about-company-text {
    flex: 1;
}

.about-company-text h2 {
    text-transform: uppercase;
}

.about-company-text p {
    color: var(--text-muted);
    line-height: 1.8;
}

.about-company-photo {
    width: 480px;
    height: 380px;
    flex-shrink: 0;
    border-radius: 12px;
    background-color: var(--navy-light);
    background-size: cover;
    background-position: center;
}

/* ==========================================
   MVV (Missão / Visão / Valores)
========================================== */
.mvv {
    padding: 80px 0;
    background-color: var(--navy-darkest);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.card-mvv {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;  
    align-items: center; 
    text-align: center; 
    gap: 16px;
    height: 100%;
}

.mvv-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.card-mvv h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 0;
}

.card-mvv p {
    color: var(--text-muted);
    font-size: 14px;
}

.mvv-list {
    list-style: none;          
    padding-left: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

/* ==========================================
   BLOCOS DE TEXTO (Sustentabilidade / Estrutura)
========================================== */
.about-block {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.about-block-gray {
    background-color: var(--bg-gray);
}

.about-block h2 {
    text-transform: uppercase;
}

.about-block p {
    color: var(--text-muted);
    max-width: 900px;
    line-height: 1.8;
}

.estrutura-list {
    list-style: disc;
    padding-left: 20px;
    margin-top: 24px;
    max-width: 900px;
    color: var(--text-muted);
}

.estrutura-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ==========================================
   NOSSA ESTRUTURA (CARROSSEL)
========================================== */
.our-structure {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.our-structure h2 {
    text-transform: uppercase;
}

.structure-swiper {
    padding-bottom: 64px !important; /* Espaço para paginação */
}

/* Novo layout da foto do carrossel em 4:3 */
.structure-card {
    background-color: var(--navy-light);
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Setas de navegação do Swiper */
.structure-prev, 
.structure-next {
    color: var(--navy-darkest) !important;
}

.structure-prev::after, 
.structure-next::after {
    font-size: 28px !important;
    font-weight: bold;
}

/* ==========================================
   RESPONSIVO DA PÁGINA SOBRE
========================================== */
@media (max-width: 1024px) {
    .about-company-layout {
        flex-direction: column;
        gap: 40px;
    }
    .about-company-photo {
        width: 100%;
        max-width: 600px;
    }
    .mvv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-company-photo {
        height: 280px; 
    }
    .mvv-grid { 
        grid-template-columns: 1fr; 
    }
    .structure-swiper {
        padding: 0 20px !important; /* Reduz o padding das setas no mobile */
    }
    .structure-prev, .structure-next {
        display: none; /* Esconde setas no celular, usuário usa touch (swipe) */
    }
}