/* --- VARIÁVEIS DE CORES (Baseadas nas imagens) --- */
:root {
    --primary-dark: #0F1412; /* Verde floresta quase preto */
    --secondary-dark: #1A211F; /* Um pouco mais claro para cards */
    --gold: #BF9B6F; /* Dourado sofisticado das imagens */
    --gold-dark: #9e7d54;
    --light-bg: #F8F8F8; /* Fundo claro para a seção de preços */
    --text-dark: #333333;
    --text-light: #E6E6E6;
}
/* --- ESTILO DO BOTÃO DO WHATSAPP --- */
.btn-whatsapp {
    background-color: #25D366; /* Cor verde oficial do WhatsApp */
    color: #ffffff; /* Cor do texto em branco para dar contraste */
    font-weight: bold; /* Deixa o texto em negrito */
    padding: 12px 28px; /* Cria o espaço interno (altura e largura) do botão */
    border-radius: 8px; /* Arredonda as pontas do botão */
    text-decoration: none; /* Remove aquele sublinhado padrão de links */
    display: inline-block; /* Permite que o botão respeite as margens e o padding */
    font-size: 1.1rem; /* Aumenta um pouquinho o tamanho da fonte */
    transition: background-color 0.3s ease; /* Cria uma transição suave... */
}

/* Efeito quando o usuário passa o mouse por cima do botão */
.btn-whatsapp:hover {
    background-color: #128C7E; /* Muda para um verde mais escuro */
}
/* --- RESET BÁSICO --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

/* --- TIPOGRAFIA E UTILITÁRIOS --- */
h1, h2, h3 {
    font-family: 'Playfair Display', serif; /* Fonte de serifa premium */
    font-weight: 700;
}

.subtitle-gold {
    display: block;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.text-gold { color: var(--gold); }
.text-light { color: var(--text-light) !important; }
.title-center { text-align: center; margin-bottom: 3rem; }
.mb-50 { margin-bottom: 50px; }

.container {
    width: 90%;
    max-width: 1200px; /* Aumentei um pouco a largura máxima */
    margin: 0 auto;
}

a { text-decoration: none; transition: 0.3s; }

/* --- BOTÕES --- */
.btn-main, .btn-pricing, .btn-cta-header {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 4px; /* Bordas mais quadradas como nas imagens */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    text-align: center;
}

.btn-main {
    background-color: var(--gold);
    color: var(--primary-dark);
    margin-top: 30px;
}
.btn-main:hover { background-color: var(--gold-dark); color: #fff; }

.btn-cta-header {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 25px;
}
.btn-cta-header:hover { background-color: var(--gold); color: var(--primary-dark); }


/* --- CABEÇALHO --- */
header {
    background-color: rgba(15, 20, 18, 0.95); /* Fundo escuro semi-transparente */
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
}
.logo span { color: var(--gold); font-style: italic; }

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}
nav a:hover { color: var(--gold); }

/* --- SEÇÃO HERO (Imagem 1) --- */
.hero-section {
    /* Usei uma imagem de floresta escura genérica do Unsplash para simular o fundo background:  */
    background: url('https://raw.githubusercontent.com/cainanconstantino23-wq/site/main/Gemini_Generated_Image_7bumw77bumw77bum.png') no-repeat center center/cover;
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Gradiente escuro para o texto ficar legível */
    background: linear-gradient(to right, rgba(15, 20, 18, 0.9), rgba(15, 20, 18, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-light);
}

/* --- ESTRUTURAS DE GRID E LAYOUT --- */
.section-dark { background-color: var(--primary-dark); padding: 5rem 0; color: #fff; }
.section-light { background-color: var(--light-bg); padding: 5rem 0; }
.section-default { background-color: #fff; padding: 5rem 0; }

.split-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}
.split-layout > div { flex: 1; }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* --- METODOLOGIA (Imagem 4) --- */
.video-placeholder {
    background-color: #000;
    height: 400px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: 1px solid #333;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1536240478700-b869070f9279?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80'); /* Imagem placeholder de cinema */
    background-size: cover;
}

.play-button {
    font-size: 4rem;
    color: var(--gold);
    cursor: pointer;
}

.methodology-grid { margin-top: 5rem; }

.card-dark {
    background-color: var(--secondary-dark);
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
    transition: 0.3s;
}
.card-dark:hover { border-color: var(--gold); transform: translateY(-5px); }

.icon-gold { font-size: 2.5rem; margin-bottom: 1.5rem; }
.card-dark h3 { margin-bottom: 1rem; color: var(--text-light); }
.card-dark p { color: #aaa; font-size: 0.95rem; }


/* --- PACOTES (Imagem 2) --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center; /* Alinha os cards verticalmente */
}

.pricing-card {
    background-color: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
}

/* Estilo específico para o card do meio (Destaque) */
.pricing-card.featured {
    background-color: var(--secondary-dark);
    color: #fff;
    padding: 4rem 2.5rem; /* Um pouco maior */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid var(--gold);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    color: var(--primary-dark);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
}

.pricing-card h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.plan-subtitle { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 1.5rem; color: #777; }
.plan-desc { font-size: 0.95rem; margin-bottom: 2rem; line-height: 1.4; }

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
    display: inline-block; /* Para centralizar o bloco de texto alinhado à esquerda */
}
.plan-features li { margin-bottom: 1rem; font-size: 0.95rem; }

.price-tag { font-size: 2.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2rem; font-family: 'Playfair Display', serif;}
.price-tag small { display: block; font-size: 0.9rem; font-family: 'Montserrat', sans-serif; color: #999; font-weight: 400;}
.price-tag span { font-size: 1.5rem; }

.btn-pricing { width: 100%; }
.btn-pricing.primary { background-color: var(--gold); color: var(--primary-dark); }
.btn-pricing.primary:hover { background-color: #fff; color: var(--primary-dark); }
.btn-pricing.secondary { background-color: var(--primary-dark); color: #fff; }
.btn-pricing.secondary:hover { background-color: var(--gold); }

/* --- SOBRE & DIFERENCIAIS (Imagem 3) --- */
.award-box {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
    border-left: 4px solid var(--gold);
}
.award-number { font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }

.why-us-grid { text-align: center; margin-top: 3rem; }
.reason-item { padding: 2rem; }
.reason-icon { font-size: 3rem; margin-bottom: 1rem; }

/* --- RODAPÉ --- */
footer {
    background-color: #000;
    color: #777;
    text-align: center;
    padding: 4rem 0;
}

/* --- RESPONSIVO (Para celular) --- */
@media (max-width: 768px) {
    header { padding: 1rem 0; }
    header .container { flex-direction: column; gap: 15px; }
    nav ul { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .btn-cta-header { display: none; /* Esconde botão do header no celular */ }

    .hero-content h1 { font-size: 2.2rem; }
    
    .split-layout { flex-direction: column; gap: 2rem; }
    .pricing-card.featured { transform: none; padding: 3rem 2rem;}
    .grid-3 { grid-template-columns: 1fr; }
}
