/* Configurações Globais e Variáveis de Cor */
:root {
    --bg-dark: #121212; /* Um preto não tão chapado, mais elegante */
    --bg-dark-secondary: #1a1a1a;
    --color-gold: #D4AF37; /* Tom de dourado */
    --color-text-primary: #E0E0E0; /* Branco suave */
    --color-text-secondary: #AAAAAA;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--color-text-primary);
    line-height: 1.7;
    font-size: 16px;
}

/* --- Elementos Globais --- */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

h1 { font-size: 2.8rem; line-height: 1.2; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 20px;
    color: var(--color-text-secondary);
}

img {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
}

/* Reaplicar borda apenas nas imagens das seções */
#apresentacao img, #compromisso img {
    border: 2px solid var(--color-gold);
    max-width: 100%; /* Garante que essas imagens ocupem o espaço total da coluna */
}

/* Garante que o max-width global de 80% não afete as imagens do Hero */
.col-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-center {
    text-align: center;
}

.subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-gold {
    color: var(--color-gold);
    font-weight: 700;
}

.dark-section {
    background-color: var(--bg-dark-secondary);
    padding: 80px 0;
}

/* --- Botão CTA (WhatsApp) --- */
.cta-button {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--bg-dark);
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--color-gold);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.cta-button.large-button {
    font-size: 1.3rem;
    padding: 20px 45px;
}

.cta-button i {
    margin-right: 10px;
}

/* --- Cabeçalho e Menu (LOGO MAIOR) --- */
.navbar {
    background-color: var(--bg-dark-secondary);
    padding: 15px 0;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ESTILIZAÇÃO DA IMAGEM DA LOGO */
.navbar .logo {
    height: 60px; /* VALOR AUMENTADO */
    width: auto; 
    margin-bottom: 0;
    border: none;
    padding: 0;
}
.logo-link {
    display: flex; 
    align-items: center;
    height: 60px; /* AJUSTADO */
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px; /* VALOR AJUSTADO PARA CORRIGIR O ESPAÇAMENTO */
    margin-bottom: 0;
}
.nav-menu a:not(.menu-cta) {
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.nav-menu a:not(.menu-cta):hover {
    color: var(--color-gold);
}
.menu-cta { /* Botão de contato no menu */
    background-color: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
}
.menu-cta:hover {
    background-color: var(--color-gold);
    color: var(--bg-dark-secondary);
}
.hamburger-menu {
    display: none; /* Esconder em desktop */
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 1.5rem;
    cursor: pointer;
}
/* Estilo para menu aberto em mobile */
.nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px; /* Ajustar conforme nova altura do navbar */
    left: 0;
    width: 100%;
    background-color: var(--bg-dark-secondary);
    padding: 20px 0;
    border-top: 1px solid #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.nav-menu.open ul {
    flex-direction: column;
    text-align: center;
    gap: 15px;
}
.nav-menu.open .menu-cta {
    display: block;
    margin: 10px auto;
}


/* --- Seção Hero (IMAGEM ESTÁTICA) --- */
#hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* CONFIGURAÇÃO COM SEU CAMINHO DE IMAGEM ATUAL */
    background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)), url('plano de fundo.jfif'); 
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
}

#hero .hero-content {
    max-width: 800px;
}

#hero h1 {
    font-size: 3rem;
}
#hero h2 {
    font-size: 1.8rem;
    font-weight: 400;
}
#hero p {
    font-size: 1.2rem;
    color: var(--color-text-primary);
    margin-bottom: 30px;
}

/* --- Seções de Texto e Imagem --- */
.text-section {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 80px 0;
}
.col-text, .col-img {
    flex: 1;
}

/* Inverter a ordem para variar o layout */
#compromisso {
    flex-direction: row-reverse;
}

/* --- Google Ads / Resultados (Features) --- */
.features-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}
.feature-item {
    flex: 1;
    background-color: var(--bg-dark);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333;
}
.feature-item i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}

/* --- Estratégias / Investimento (Colunas) --- */
.strategy-columns {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}
.strategy-col {
    flex: 1;
    border-left: 3px solid var(--color-gold);
    padding-left: 20px;
}

/* --- Compromisso (Lista) --- */
.compromisso-list {
    list-style: none;
    margin-top: 30px;
}

.compromisso-list li {
    margin-bottom: 25px; 
}

.list-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px; 
}

.list-header i {
    color: var(--color-gold);
    font-size: 1.4rem;
    margin-right: 15px;
}

.list-header h3 {
    font-size: 1.3rem;
    color: var(--color-text-primary); 
    margin-bottom: 0;
    font-weight: 700;
}

.compromisso-list p {
    padding-left: 37px; 
    margin-bottom: 0;
    color: var(--color-text-secondary);
}

/* --- Processo --- */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px;
}
.step {
    flex: 1;
}
.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    width: 60px;
    height: 60px;
    line-height: 56px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
}
.step-arrow {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-top: 40px;
}

/* --- CTA Final --- */
#cta-final {
    background-color: var(--bg-dark-secondary);
    padding: 80px 0;
    border-top: 4px solid var(--color-gold);
}
#cta-final p {
    font-size: 1.2rem;
    color: var(--color-text-primary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Rodapé --- */
footer {
    background-color: #000;
    color: var(--color-text-secondary);
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
}

/* --- Animação de Scroll (Interatividade) --- */
.hidden-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.show-element {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsividade (Celular) --- */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    #hero {
        min-height: 90vh;
        text-align: left;
    }
    
    #hero .hero-content {
        padding-top: 40px;
    }

    /* Layout da Navbar Mobile */
    .hamburger-menu {
        display: block; 
    }
    .nav-menu {
        display: none; 
    }
    /* AJUSTE LOGO MOBILE */
    .navbar .logo {
        height: 45px; /* Tamanho ajustado para mobile */
    }
    .logo-link {
        height: 45px;
    }
    
    .text-section, #compromisso {
        flex-direction: column;
    }
    .col-img {
        margin-bottom: 30px;
    }

    .features-grid,
    .strategy-columns,
    .process-steps {
        flex-direction: column;
    }
    
    .strategy-col {
        border-left: none;
        border-top: 3px solid var(--color-gold);
        padding-left: 0;
        padding-top: 20px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 10px auto;
    }
}