/* ========================================= */
/* --- AJUSTE GLOBAL DE LARGURA --- */
/* ========================================= */
.container { max-width: 1600px !important; }
html, body { overflow-x: hidden; }

/* ========================================== */
/* --- 1. HERO EXCLUSIVO: CONSULTORIA --- */
/* ========================================== */
.consultoria-hero {
    min-height: 550px; height: 65vh; padding-top: 110px; padding-bottom: 40px;
    background: url('https://images.unsplash.com/photo-1504307651254-35680f356f58?q=80&w=2000') center/cover no-repeat;
    display: flex; align-items: center; position: relative;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy-dark) 35%, rgba(10, 25, 47, 0.5) 100%); }
.hero-text-box { position: relative; z-index: 10; max-width: 800px; padding-top: 60px;}
.hero-tag { color: var(--paultrab-orange); text-transform: uppercase; font-weight: 800; font-size: 0.9rem; display: block; margin-bottom: 15px; letter-spacing: 4px;}
.hero-title { color: var(--white); font-family: var(--font-title); font-size: 4.2rem; font-weight: 900; line-height: 1.1; margin-bottom: 10px; }
.hero-title .highlight { color: var(--paultrab-orange); }
.hero-description { color: rgba(255,255,255,0.85); font-size: 1.25rem; line-height: 1.6; max-width: 700px; }

/* BOTÃO (LARANJA COM TEXTO ESCURO) */
.btn-solid-orange-hero {
    background-color: var(--paultrab-orange); 
    color: var(--navy-dark); 
    padding: 18px 40px; 
    border-radius: 4px; 
    font-weight: 800; 
    text-transform: uppercase; 
    text-decoration: none; 
    display: inline-block; 
    transition: 0.3s; 
    font-family: var(--font-title);
    letter-spacing: 1px;
}
.btn-solid-orange-hero:hover { 
    background-color: var(--white); 
    transform: translateY(-3px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* ========================================== */
/* --- 2. TÍTULOS E TEXTOS --- */
/* ========================================== */
.section-title-dark { font-family: var(--font-title); font-size: 2.8rem; color: var(--navy-dark); font-weight: 900; margin-bottom: 15px; }
.title-line { width: 80px; height: 4px; background: var(--paultrab-orange); }

.lead-text { font-size: 1.3rem; line-height: 1.8; color: var(--text-dark); }
.lead-text strong { color: var(--navy-dark); }

/* ========================================== */
/* --- 3. SEÇÃO CONTEÚDO (SPLIT) --- */
/* ========================================== */
.consultoria-content-section { padding: 100px 0; background-color: var(--white); }
.consultoria-flex { display: flex; align-items: center; gap: 80px; max-width: 1400px; margin: 0 auto; } 

.consultoria-image { flex: 1; position: relative; }
.consultoria-text { flex: 1; }

.consultoria-image img { 
    width: 100%; 
    aspect-ratio: 4 / 3; 
    object-fit: cover; 
    border-radius: 12px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); 
    display: block; 
    position: relative; 
    z-index: 2;
}

/* BLOCO LARANJA SÓLIDO ATRÁS DA IMAGEM */
.image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 60%;
    height: 60%;
    background-color: var(--paultrab-orange);
    border-radius: 12px;
    z-index: 1;
}

/* ========================================== */
/* --- 4. HIGHLIGHTS DA CONSULTORIA --- */
/* ========================================== */
.consultoria-highlights-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    margin-top: 100px; 
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 15px; 
    background: var(--bg-light); 
    padding: 35px 30px; 
    border-radius: 12px; 
    border-bottom: 4px solid var(--paultrab-orange); 
    transition: 0.3s; 
    border: 1px solid var(--border-light);
}
.highlight-item:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 15px 30px rgba(10, 25, 47, 0.08); 
    border-bottom-color: var(--paultrab-orange);
}
.highlight-item i { font-size: 2.2rem; color: var(--navy-dark); margin-bottom: 5px; }
.highlight-item h4 { font-family: var(--font-title); color: var(--navy-dark); font-size: 1.3rem; font-weight: 800; margin-bottom: 5px; }
.highlight-item span { color: var(--text-gray); font-size: 1rem; line-height: 1.5; display: block;}


/* ========================================== */
/* --- 5. CTA BAND FINAL (LARANJA) --- */
/* ========================================== */
.about-cta { 
    padding: 100px 0; 
    background-color: var(--paultrab-orange); 
    color: var(--navy-dark); 
}
.about-cta h2 { font-family: var(--font-title); font-size: 2.8rem; font-weight: 900; margin-bottom: 15px; color: var(--navy-dark);}
.about-cta p { font-size: 1.2rem; max-width: 700px; margin: 0 auto; font-weight: 500; line-height: 1.5; color: var(--navy-dark);}

.btn-solid-large-navy { 
    background: var(--navy-dark); color: var(--white); padding: 20px 45px; 
    border-radius: 4px; font-weight: 800; text-transform: uppercase; text-decoration: none; 
    display: inline-flex; align-items: center; gap: 12px; transition: 0.3s; margin-top: 40px; border: none; font-family: var(--font-title); letter-spacing: 1px;
}
.btn-solid-large-navy:hover { background: var(--white); color: var(--navy-dark); transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }


/* ========================================== */
/* --- 6. RESPONSIVIDADE PENTE FINO --- */
/* ========================================== */
@media (max-width: 992px) {
    .consultoria-flex { flex-direction: column; gap: 50px;}
    .image-accent { display: none; } 
    .consultoria-image img { aspect-ratio: 16 / 9; } 
    .consultoria-highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .consultoria-hero { padding: 130px 0 50px; height: auto; min-height: 350px; }
    .hero-text-box { padding-top: 0; }
    .hero-title { font-size: 2.2rem; line-height: 1.2; }
    .consultoria-hero h2 { font-size: 1.2rem !important; }
    
    .section-title-dark { font-size: 1.8rem; line-height: 1.3; margin-bottom: 20px;}
    
    .consultoria-content-section, .about-cta { padding: 60px 0; }
    
    .consultoria-highlights-grid { grid-template-columns: 1fr; margin-top: 50px; gap: 15px;}

    /* Ícone na esquerda do texto no mobile */
    .highlight-item {
        flex-direction: row; 
        align-items: flex-start;
        padding: 25px 20px;
    }
    .highlight-item i {
        font-size: 1.6rem;
        margin-top: 3px;
        margin-bottom: 0;
    }
    .highlight-item h4 {
        font-size: 1.1rem;
    }
    
    .about-cta h2 { font-size: 1.8rem; }
    .btn-solid-large-navy { width: 100%; justify-content: center; font-size: 0.95rem; padding: 15px 30px;}
    .btn-solid-orange-hero { width: 100%; justify-content: center; }
}