/* ========================================= */
/* --- AJUSTE GLOBAL DE LARGURA --- */
/* ========================================= */
.container { max-width: 1600px !important; }
html, body { overflow-x: hidden; }

/* ========================================= */
/* --- 1. HERO PCMSO (BANNER) --- */
/* ========================================= */
.pcmso-hero {
    position: relative;
    min-height: 550px; height: 65vh; 
    padding-top: 110px; padding-bottom: 40px;
    background: url('https://images.unsplash.com/photo-1551076805-e166946e0e54?q=80&w=2000') center/cover no-repeat; /* Imagem médica premium */
    display: flex; align-items: center; 
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 25, 47, 0.95) 35%, rgba(10, 25, 47, 0.6) 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: 4rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.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: 650px; }

/* Botão Laranja do Hero */
.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-flex; align-items: center; 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 INTRODUÇÃO --- */
/* ========================================= */
.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); margin: 0 auto 30px auto; }

.intro-section { padding: 100px 0; background-color: var(--white); }
.lead-text { font-size: 1.3rem; line-height: 1.8; color: var(--text-dark); max-width: 800px; margin: 0 auto; }
.lead-text strong { color: var(--navy-dark); }

/* ========================================= */
/* --- 3. GRID DE SERVIÇOS (COMO AJUDAMOS) --- */
/* ========================================= */
.services-grid-section { padding: 100px 0; background-color: var(--bg-light); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; max-width: 1400px; margin-left: auto; margin-right: auto;}
.service-card {
    background: var(--white); padding: 40px 30px; border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.4s; border-top: 4px solid transparent; border: 1px solid var(--border-light);
}
.service-card:hover { transform: translateY(-10px); border-top-color: var(--paultrab-orange); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.icon-box { width: 60px; height: 60px; background: rgba(246, 159, 0, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; }
.icon-box i { font-size: 1.8rem; color: var(--paultrab-orange); }
.service-card h3 { font-family: var(--font-title); font-size: 1.2rem; color: var(--navy-dark); margin-bottom: 15px; font-weight: 800; }
.service-card p { font-size: 0.95rem; line-height: 1.6; color: var(--text-gray); }

/* ========================================= */
/* --- 4. EXAMES OCUPACIONAIS (LADO A LADO) --- */
/* ========================================= */
.exams-section { padding: 100px 0; background-color: var(--white); }
.flex-layout { display: flex; align-items: center; gap: 60px; max-width: 1400px; margin: 0 auto;}
.flex-text { flex: 1; }
.description-text { font-size: 1.15rem; line-height: 1.7; margin-bottom: 30px; color: var(--text-dark);}
.check-list { list-style: none; }
.check-list li { font-size: 1.1rem; margin-bottom: 15px; display: flex; align-items: center; gap: 15px; color: var(--navy-dark); font-weight: 600; }
.check-list i { color: #25D366; font-size: 1.3rem; } /* Verde para os checks */
.flex-image { flex: 1; }
.flex-image img { width: 100%; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); object-fit: cover; max-height: 500px;}

/* ========================================= */
/* --- 5. CALLOUTS DE ALERTA --- */
/* ========================================= */
.callouts-section { padding: 80px 0 100px; background-color: var(--bg-light); }
.alert-box-orange { 
    background-color: var(--paultrab-orange); padding: 40px 50px; border-radius: 12px; 
    margin-bottom: 30px; color: var(--navy-dark); box-shadow: 0 15px 30px rgba(246, 159, 0, 0.2); max-width: 1400px; margin-left: auto; margin-right: auto;
}
.alert-box-orange h3 { font-family: var(--font-title); font-size: 1.8rem; font-weight: 900; margin-bottom: 15px; }
.alert-box-orange p { font-size: 1.15rem; line-height: 1.6; }

.callout-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 1400px; margin: 0 auto;}
.callout-card { 
    background-color: var(--navy-dark); padding: 40px; border-radius: 12px; color: var(--white); 
    display: flex; flex-direction: column; align-items: flex-start;
}
.callout-icon { font-size: 2.5rem; color: var(--paultrab-orange); margin-bottom: 20px; }
.callout-card h4 { font-family: var(--font-title); font-size: 1.5rem; font-weight: 800; margin-bottom: 15px; }
.callout-card p { font-size: 1rem; line-height: 1.6; color: var(--text-muted); }
.callout-card a { color: var(--paultrab-orange); font-weight: 600; text-decoration: none; }
.callout-card a:hover { text-decoration: underline; }

/* ========================================== */
/* --- 6. CTA BAND --- */
/* ========================================== */
.cta-band { 
    padding: 100px 0; 
    background-color: var(--paultrab-orange); 
    color: var(--navy-dark); 
}
.cta-band h2 { font-family: var(--font-title); font-size: 2.8rem; font-weight: 900; margin-bottom: 15px; color: var(--navy-dark);}
.cta-band 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); }


/* ========================================== */
/* --- 7. RESPONSIVIDADE PENTE-FINO MOBILE --- */
/* ========================================== */
@media (max-width: 1024px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .flex-layout { flex-direction: column; }
    .callout-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 3rem; }
}

@media (max-width: 768px) {
    .pcmso-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; margin-bottom: 15px; }
    .hero-description { font-size: 1rem; margin-bottom: 25px; }
    .btn-solid-orange-hero { width: 100%; justify-content: center; }
    
    .section-title-dark { font-size: 2rem; }
    
    .intro-section, .services-grid-section, .exams-section, .callouts-section, .cta-band { padding: 60px 0; }
    .service-grid { grid-template-columns: 1fr; gap: 20px; }
    
    .alert-box-orange { padding: 30px 20px; }
    .alert-box-orange h3 { font-size: 1.5rem; }
    .callout-card { padding: 30px 20px; }
    
    .cta-band h2 { font-size: 1.8rem; margin-bottom: 15px; }
    .btn-solid-large-navy { width: 100%; justify-content: center; font-size: 0.95rem; padding: 15px 30px;}
}