/* Variáveis de Cores (Azul Vibrante e Preto do Logo) */
:root {
    --primary-color: #0077FF; /* Azul Vibrante para CTAs e Destaque */
    --secondary-color: #000000; /* Preto */
    --text-color: #333; /* Cor de texto padrão para seções claras */
    --bg-light: #f0f2f5; /* Fundo levemente cinza claro para Services */
    --bg-dark: #000000; /* Fundo escuro: Cabeçalho, Credibilidade, Rodapé */
    --text-on-dark: white; /* Cor do texto no fundo escuro */
    --hero-overlay: rgba(0, 0, 0, 0.5); /* Overlay escuro para melhorar legibilidade no hero */
}

/* Reset Básico e Tipografia... */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h3 { font-size: 2em; margin-bottom: 1em; text-align: center; }

/* Botões (CTAs) */
.btn {
    display: inline-block;
    padding: 12px 25px; 
    margin-top: 20px;
    border-radius: 8px; 
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary {
    background-color: white;
    color: var(--bg-dark);
}

.btn:hover {
    opacity: 0.95;
    transform: translateY(-2px); 
}

/* 1. Cabeçalho (Preto) */
.header {
    background-color: var(--bg-dark); /* COR PRETA */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px; 
    width: auto;
}

.nav a {
    color: var(--text-on-dark); /* Links em branco */
    text-decoration: none;
    margin-left: 25px; 
    font-weight: 500;
}

.nav .btn-primary {
    margin-left: 25px; 
    margin-top: 0; 
    padding: 8px 18px; 
    font-size: 0.9em;
}


/* --- 2. 1ª Dobra (Hero) - COM IMAGEM DE FUNDO 'fundo.jpg' --- */
.hero {
    background-image: url('fundo.jpg'); /* Nome do arquivo */
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed; 
    padding: 120px 0; 
    text-align: center;
    color: var(--text-on-dark); 
    position: relative; 
}

.hero::before { 
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--hero-overlay);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    color: white; 
    font-size: 3.2em;
    margin-bottom: 0.6em;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7); 
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
/* ---------------------------------------------------- */


/* 3. Destaque de Serviços */
.services {
    padding: 80px 0;
    background-color: var(--bg-light); /* Fundo claro para contrastar */
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px; 
    margin-top: 40px;
}

.service-item {
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1); /* Sombra para profundidade */
    background-color: white;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-item h4 {
    color: var(--primary-color); /* Títulos de serviço em Azul Vibrante */
    margin-bottom: 15px;
    font-size: 1.5em;
}


/* 4. Credibilidade (Preto) */
.credibility {
    background-color: var(--bg-dark); /* Preto */
    color: var(--text-on-dark);
    padding: 80px 0;
    text-align: center;
}

.credibility h3 {
    color: var(--primary-color); 
}

/* 5. Rodapé (Preto) */
.footer {
    background-color: var(--bg-dark); /* Preto */
    color: var(--text-on-dark);
    padding: 25px 0;
    text-align: center;
    font-size: 0.9em;
}

.footer-links a {
    color: var(--primary-color); 
    text-decoration: none;
    margin: 0 12px;
}

/* Responsividade... */
@media (max-width: 768px) {
    /* ... (Estilos de responsividade) ... */
}