/* =========================================
   PÁGINA: PROJETO JIMBO
========================================= */

/* 1. Hero Específico do Jimbo */
.hero-jimbo {
    min-height: 70vh; 
}
.hero-jimbo .hero-content {
    padding-top: 15vh;
}

/* =========================================
   TÍTULOS E CORES (Regra de Ouro)
========================================= */
/* Secções Creme (Alinhado à Esquerda, Dourado) */
.header-cream-left {
    text-align: left;
    margin-bottom: 3rem;
}
.header-cream-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.header-cream-left .label-line {
    width: 40px; height: 1px; background-color: var(--gold);
}
.header-cream-left span {
    text-transform: uppercase; font-size: 0.85rem; letter-spacing: 2px; color: var(--gold); font-weight: 600;
}
/*.header-cream-left h2 {
    font-family: var(--font-display); font-size: 2.8rem; color: var(--gold); margin-bottom: 1rem; line-height: 1.2;
}*/
.header-cream-left p {
    font-size: 1.1rem; color: #555; max-width: 600px; line-height: 1.6;
}

/* Secções Verdes (Centrado, Dourado) */
.header-green-center {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header-green-center .section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.header-green-center .label-line {
    width: 40px; height: 1px; background-color: var(--gold);
}
.header-green-center span {
    text-transform: uppercase; font-size: 0.85rem; letter-spacing: 2px; color: var(--gold); font-weight: 600;
}
.header-green-center h2 {
    font-family: var(--font-display); font-size: 2.8rem; color: var(--gold); margin-bottom: 1rem; line-height: 1.2;
}

/* =========================================
   CARTÕES & EFEITOS HOVER DOURADOS
========================================= */
.hover-gold-border {
    border: 2px solid transparent; /* Essencial para não haver saltos visuais */
    transition: all 0.3s ease;
}
.hover-gold-border:hover {
    border-color: var(--gold) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* =========================================
   SECÇÃO: OPERAÇÕES (Fundo Floresta)
========================================= */
.jimbo-operations {
    background-color: var(--forest);
    padding: 6rem 0;
}

/* =========================================
   SECÇÃO: COMUNIDADE E PROJETOS SOCIAIS
========================================= */
.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem; /* Margem corrigida para não ficar feio */
    margin-top: 3rem;
}
.social-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05); /* Margem visual suave */
}

/* =========================================
   SECÇÃO: ENERGIA E OPERACIONAL
========================================= */
.section-energia {
    padding: 6rem 0; 
    background-color: var(--forest); 
    color: var(--cream);
}
.energia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* Espaçamento reduzido a pedido */
    align-items: center;
}
/*.image-wrapper-bordered {
    position: relative;
    padding: 1rem; 
}
.image-wrapper-bordered img {
    width: 100%; height: auto; border-radius: 2px; display: block;
}
.image-wrapper-bordered::before {
    content: ''; position: absolute; top: 0; left: 0; width: 50%; height: 50%;
    border-top: 2px solid var(--gold); border-left: 2px solid var(--gold);
}
.image-wrapper-bordered::after {
    content: ''; position: absolute; bottom: 0; right: 0; width: 50%; height: 50%;
    border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold);
}*/

.energia-item {
    display: flex; gap: 1.5rem; margin-bottom: 2rem; align-items: flex-start;
}
.energia-icon {
    flex-shrink: 0; width: 50px; height: 50px;
    border: 1px solid var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
}
.energia-icon svg {
    width: 22px; height: 22px;
}

/* =========================================
   SECÇÃO: CERTIFICAÇÕES
========================================= */
.certifications-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center;
}
.cert-card {
    background-color: #ffffff; padding: 3rem 2rem; border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.05);
}
.cert-logo-wrapper {
    height: 100px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.cert-img {
    max-height: 80px; width: auto; filter: grayscale(100%) opacity(0.7); transition: all 0.4s ease;
}
.cert-card:hover .cert-img {
    filter: grayscale(0%) opacity(1); transform: scale(1.05);
}

/* =========================================
   SECÇÃO: NARRATIVA DE IMPACTO
========================================= */
.impact-narrative-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.impact-narrative-box {
    background-color: var(--forest-light);
    padding: 3.5rem 2rem; text-align: center; border-radius: 2px;
}
.impact-box-title {
    font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); margin-bottom: 1rem;
}
.impact-box-desc {
    color: var(--cream); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; line-height: 1.6; opacity: 0.9;
}

/* =========================================
   RESPONSIVIDADE MOBILE
========================================= */
@media (max-width: 900px) {
    .energia-grid, .certifications-grid, .impact-narrative-grid, .social-grid {
        grid-template-columns: 1fr; gap: 2rem;
    }
    .energia-image-col { order: -1; }
    .header-cream-left h2, .header-green-center h2 { font-size: 2.2rem; }
}