/* assets/css/style.css - Estilo Elegante e Profissional */

/* --- 1. CONFIGURAÇÕES GERAIS --- */
body {
    overflow-x: hidden;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6; /* Melhora leitura */
}

/* Classe para justificar texto (Essencial para blocos de texto) */
.text-justify {
    text-align: justify !important;
    text-justify: inter-word !important;
}

/* Classe para forçar maiúsculas apenas onde desejado (Badges e Botões) */
.text-uppercase-bold {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* Títulos com fonte mais encorpada, mas sem ser tudo maiúsculo */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #002557; /* Azul Escuro Institucional */
}

/* --- 2. HERO SECTION (CAPA) --- */
.hero-section { 
    background: linear-gradient(160deg, #004aad 0%, #002557 100%); 
    color: white; 
    padding: 80px 0; 
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    color: white; /* Título da capa branco */
}

.hero-section::before {
    content: ''; 
    position: absolute; 
    top: -50%; 
    left: -50%; 
    width: 200%; 
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    transition: transform 0.3s;
}
.hero-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

/* --- 3. COMPONENTES --- */
.service-card { 
    transition: transform 0.3s, box-shadow 0.3s; 
    height: 100%; 
    border: 1px solid #e9ecef;
}
.service-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

/* Sublinhado elegante nos títulos de seção */
.section-title { 
    position: relative; 
    display: inline-block; 
    padding-bottom: 15px; 
    margin-bottom: 30px; 
}
.section-title::after { 
    content: ''; 
    position: absolute; 
    left: 50%; 
    bottom: 0; 
    transform: translateX(-50%); 
    width: 60px; 
    height: 4px; 
    background-color: #ffc107; /* Amarelo destaque */
    border-radius: 2px;
}

/* --- 4. MODAIS E BANNERS --- */
.modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

#lgpd-banner { 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    background: #fff; 
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15); 
    padding: 20px; 
    z-index: 9999; 
    display: none; 
    border-top: 4px solid #ffc107; 
}

/* --- 5. RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .hero-section { padding: 50px 0; }
    .hero-section h1 { font-size: 2rem; }
    
    /* No celular, justificar textos curtos pode ficar feio, 
       mas vamos manter conforme pedido nas descrições longas */
}