/* --- Variáveis Globais --- */
:root {
    --primary-color: #0d1b2a; /* Azul muito escuro */
    --secondary-color: #1b263b; /* Azul acinzentado escuro */
    --accent-color: #bfa15f; /* Dourado/Ocre */
    --light-color: #f8f9fa; /* Cinza muito claro */
    --text-color: #333;
    --light-text-color: #f1f1f1;
    --whatsapp-color: #25D366;
    --whatsapp-hover: #1DAE54;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Lato', sans-serif;
    --transition-speed: 0.3s;
}

/* --- Reset e Base --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-secondary);
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden; /* Prevenir scroll horizontal */
}

h1, h2, h3, h4, h5, h6, .main-name, .action-button, .cta-button {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
}

h2 {
    font-size: 2.4em;
    color: var(--secondary-color);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}
/* Linha decorativa H2 */
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

p { margin-bottom: 1rem; }

a { color: var(--accent-color); text-decoration: none; transition: color var(--transition-speed) ease; }
a:hover { color: var(--secondary-color); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; padding-left: 0; }

.container {
    max-width: 1200px; /* Largura aumentada */
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    max-width: 700px;
    margin: -15px auto 40px auto;
}

.bg-light { background-color: var(--light-color); }

/* --- Efeitos de Animação (Simples) --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }


/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 90vh; /* Mais alto */
    background-image: url('bg_image.jpg'); /* SUA IMAGEM */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: var(--light-text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
    overflow: hidden;
}



.hero-section .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.85) 0%, rgba(27, 38, 59, 0.9) 100%); /* Gradiente mais sofisticado */
    z-index: 1;
}

.hero-content { z-index: 2; } /* Conteúdo acima do overlay */

.hero-section h1 {
    font-size: 3em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero-section .main-name {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 8px;
    color: #f8f9fa;
}

.hero-section .subtitle {
    font-size: 1.4em;
    font-weight: 500;
    margin-bottom: 30px;
    color: #e0e0e0;
    letter-spacing: 1px; /* Espaçamento entre letras */
}

.hero-section .description {
    font-size: 1.15em;
    max-width: 750px;
    margin: 0 auto 45px auto;
    color: #d5d5d5;
    line-height: 1.8;
}

.cta-button { /* Estilo base para botões principais */
    display: inline-block;
    background-color: var(--whatsapp-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700; /* Mais forte */
    font-size: 1.1em;
    transition: all var(--transition-speed) ease;
    border: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cta-button i { margin-right: 10px; }

.cta-button:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary { /* Estilo alternativo */
    background-color: var(--accent-color);
    box-shadow: 0 6px 18px rgba(191, 161, 95, 0.3);
}
.cta-button.secondary:hover {
     background-color: #a88d4c; /* Dourado mais escuro */
     box-shadow: 0 8px 22px rgba(191, 161, 95, 0.4);
}

.cta-button.large {
    padding: 18px 45px;
    font-size: 1.2em;
}


/* --- Quick Actions Section --- */
.quick-actions {
    background-color: var(--secondary-color);
    padding: 40px 0;
    border-bottom: 5px solid var(--accent-color);
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.action-button {
    background-color: transparent;
    color: var(--light-text-color);
    padding: 18px 15px;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    transition: all var(--transition-speed) ease;
    letter-spacing: 0.5px;
    display: flex; /* Adicionado display flex */
    align-items: center; /* Adicionado alinhamento vertical */
    justify-content: center; /* Adicionado alinhamento horizontal para maior precisão */
}

.action-button:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(191, 161, 95, 0.3);
}


/* --- Services Section ("Como podemos...") --- */
.services-section {
    padding: 80px 0;
    background-color: #fff;
}
.services-section h2 { color: var(--primary-color); } /* Título específico */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.service-box {
    background-color: var(--light-color);
    padding: 35px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.8em;
    color: var(--accent-color);
    margin-bottom: 20px;
    line-height: 1; /* Evitar altura extra */
}

.service-box h3 {
    font-size: 1.3em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-box p {
    font-size: 0.95em;
    color: #555;
    flex-grow: 1; /* Empurra o botão (se houver) para baixo */
}
/* Remover botão original dessa seção, se houver */
.service-box .button { display: none; }

/* --- Como Funciona --- */
.process-steps {
    list-style: none;
    padding-left: 0;
    max-width: 700px;
    margin: 0 auto;
}

.process-steps li {
    position: relative;
    padding: 15px 0 15px 40px;
    margin-bottom: 20px;
    border-left: 3px solid var(--accent-color); /* Linha vertical */
}

.process-steps li::before {
    content: '';
    position: absolute;
    left: -11px;
    top: 18px;
    width: 18px;
    height: 18px;
    background-color: var(--accent-color);
    border-radius: 50%;
    border: 3px solid #fff;
}

.step-icon-placeholder {
    display: none;
}

.process-steps strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 5px;
}


/* FAQ */
.faq-item {
    margin-bottom: 20px;
}

.faq-box {
    background-color: var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.faq-box[open] {
    background-color: var(--secondary-color);
}

.faq-question {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--light-text-color);
    padding: 20px;
    cursor: pointer;
    position: relative;
    padding-right: 40px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--light-text-color);
    transition: transform var(--transition-speed) ease;
}

.faq-box[open] .faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 20px;
    background-color: var(--light-color);
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}



/* --- Content Sections --- */
.content-section { padding: 80px 0; }

/* --- About Section Specific --- */
.about-section h2 { text-align: left; }
.about-section h2::after { left: 0; transform: translateX(0); } /* Alinha underline à esquerda */
.about-section .section-subtitle { text-align: left; margin: -15px 0 30px 0; }

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Coluna de texto maior */
    gap: 50px;
    align-items: center;
}

.about-text ul li {
    padding-left: 30px; /* Mais espaço */
    margin-bottom: 12px;
    position: relative;
    font-size: 1em;
    color: #444;
}
.about-text ul li i { /* Estilo do ícone antes do texto */
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent-color);
    font-size: 1.1em;
    width: 20px; /* Alinhamento */
    text-align: center;
}
.about-text .cta-button { margin-top: 20px; }

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* --- Atuação Profissional (Feature Grid) --- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 25px;
    background-color: #fff; /* Fundo branco mesmo em seção bg-light */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    border-top: 4px solid var(--accent-color);
}
.feature-item i {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block; /* Ícone em linha própria */
}
.feature-item h3 {
    font-size: 1.2em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}
.feature-item p { font-size: 0.9em; color: #666; }


/* --- Contact Section --- */
.contact-section {
    text-align: center;
    background: linear-gradient(to bottom, var(--light-color), #fff); /* Gradiente suave */
}
.contact-section h2 { color: var(--primary-color); }
.contact-section p {
    max-width: 650px;
    margin: 0 auto 35px auto;
    font-size: 1.1em;
    color: #555;
}

/* --- Footer --- */
footer {
    background-color: var(--primary-color);
    color: #aab2c0; /* Cinza azulado claro */
    padding: 50px 0 30px 0;
    font-size: 0.9em;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-info h3, .footer-social h3 {
    color: var(--light-text-color);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.2em;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 8px;
    display: inline-block; /* Faz a borda ajustar ao texto */
}

.footer-info p { margin-bottom: 8px; }
.footer-info a { color: #c0c8d4; }
.footer-info a:hover { color: #fff; }

.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    color: #aab2c0;
    font-size: 1.6em; /* Ícones maiores */
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}
.social-icons a:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--secondary-color);
    padding-top: 25px;
    margin-top: 20px; /* Espaço antes da linha */
    font-size: 0.85em;
}
.footer-bottom a { color: #aab2c0; }
.footer-bottom a:hover { color: var(--accent-color); }


/* --- Responsividade --- */
@media (max-width: 992px) {
    h2 { font-size: 2em; }
    .hero-section h1 { font-size: 2.5em; }
    .hero-section .main-name { font-size: 2em; }
    .hero-section .subtitle { font-size: 1.3em; }
    .about-grid { grid-template-columns: 1fr; text-align: center;}
    .about-text h2 { text-align: center; }
    .about-text h2::after { left: 50%; transform: translateX(-50%); }
    .about-section .section-subtitle { text-align: center; margin-left: auto; margin-right: auto;}
    .about-image { margin-top: 30px; max-width: 400px; margin-left: auto; margin-right: auto;}
    .footer-content { text-align: center; }
    .footer-info h3, .footer-social h3 { display: block; border-bottom: none; margin-bottom: 10px; }
    .social-icons { justify-content: center; }
}

@media (max-width: 768px) {
    body { font-size: 15px; } /* Ajusta tamanho base */
    h2 { font-size: 1.8em; }
    .hero-section { min-height: auto; padding: 80px 15px; background-attachment: scroll; }
    .hero-section h1 { font-size: 2em; }
    .hero-section .main-name { font-size: 1.7em; }
    .hero-section .subtitle { font-size: 1.2em; }
    .hero-section .description { font-size: 1.05em; }
    .cta-button { font-size: 1em; padding: 14px 30px; }

    .quick-actions { padding: 30px 0; }
    .button-grid { gap: 12px; }
    .action-button { font-size: 0.85em; padding: 15px 10px; }

    .services-section { padding: 60px 0; }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; }
    .service-box { padding: 30px 25px; }
    .service-icon { font-size: 2.5em; }

    .content-section { padding: 60px 0; }
    .feature-grid { grid-template-columns: 1fr 1fr; } /* Duas colunas */

    .footer { padding: 40px 0 20px 0; }
    .footer-content { gap: 20px; margin-bottom: 30px; }
}

@media (max-width: 576px) {
     h2 { font-size: 1.6em; }
     .hero-section h1 { font-size: 1.8em; }
     .hero-section .main-name { font-size: 1.5em; }
     .hero-section .subtitle { font-size: 1.1em; }

     .button-grid { grid-template-columns: 1fr; } /* Uma coluna */
     .services-grid { grid-template-columns: 1fr; }
     .feature-grid { grid-template-columns: 1fr; }

     .about-grid { gap: 30px; }
     .about-text ul li { padding-left: 25px; font-size: 0.95em; }
     .about-text ul li i { font-size: 1em; top: 5px; }

     .social-icons { gap: 20px; } /* Mais espaço em mobile */
     .social-icons a { font-size: 1.8em; }
     .footer-content { grid-template-columns: 1fr; } /* Uma coluna */
     .footer-bottom { font-size: 0.8em; }
}