.hero {
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.489), rgba(0, 0, 0, 0.445));
    z-index: -1;
}

.breadcrumb {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
}

/* --- ESTILOS COMPARTILHADOS --- */
.divider-gold {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 20px 0;
}

.section-title.center {
    text-align: center;
    margin-bottom: 60px;
}

.premios {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
    gap: 20px;
}

.section-title h2 { font-size: 2.5rem; margin-bottom: 10px; }
.subtitle { color: var(--accent-color); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }


/* --- 1. HISTÓRIA --- */
.history-section {
    background-color: var(--bg-1);
}

.image-frame {
    position: relative;
    padding: 15px;
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,0.02);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: var(--shadow-card);
}

/* --- 2. MVV (Missão, Visão, Valores) --- */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mvv-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.mvv-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-card);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.mvv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--title-color);
}

.mvv-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.values-list i {
    color: var(--accent-color);
}

/* --- 3. GLOBAL SECTION --- */
.global-section {
    background-color: var(--bg-1);
}

.global-section .col-img {
    margin-left: -100px;
}

.quote-box {
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.offices-container {
    margin-top: 30px;
    background: rgba(255,255,255,0.03);
    padding: 25px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    width: 50%;
}

.offices-container h4 {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.offices-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.offices-list li {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.offices-list i { color: var(--accent-color); font-size: 0.8rem; }

.map-visual {
    filter: drop-shadow(0 0 10px rgba(191, 152, 83, 0.1)); /* Leve brilho dourado no mapa */
    opacity: 0.8;
    transition: opacity 0.3s;
}

.map-visual:hover { opacity: 1; }


.south-section .col-img {
    display: flex;
    justify-content: center;
    width: 35%;
}

.sustentabilidade-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.sustentabilidade-section h2, .sustentabilidade-section p {
    color: var(--text-dark);
}

/* --- RESPONSIVIDADE (Mobile) --- */
@media (max-width: 768px) {
    .global-section .col-img {
        margin: 0;
    }

    .south-section .col-img {
        width: 100%;
    }

}
@media (max-width: 900px) {
    
    .offices-list { grid-template-columns: repeat(2, 1fr); }
    
}