<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #1f2937;
            line-height: 1.6;
    /* Aumentamos de 75px para 100px (ou um pouco mais) para empurrar o conteúdo inicial para baixo */
    padding-top: 35px; 
        }

section, [id] {
    /* Conta matemática perfeita: quando você clicar em "Riscos", o navegador vai parar 
       110px antes do início real da seção, deixando o título totalmente visível abaixo do menu */
    scroll-margin-top: 30px; 
}

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

logo-link {
    text-decoration: none;
    color: inherit; /* Mantém a cor original da logo */
    cursor: pointer;
    display: inline-block;
}

        /* Header/Navigation */
        header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* Garante que o menu fique acima de simuladores, FAQ e popups */
    box-sizing: border-box; /* CRUCIAL: impede que paddings aumentem a largura além dos 100% */
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 10); /* Uma sombra bem sutil para separar o menu do resto do site ao rolar a página */
}

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #095b4f;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #4b5563;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #095b4f;
        }

        .btn-primary {
            background: #095b4f;
            color: white;
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }

        .btn-primary:hover {
            background: #073d38;
        }

        .btn-gold {
            background: linear-gradient(135deg, #d1ba69, #c9a961);
            color: #095b4f;
            padding: 16px 32px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(209, 186, 105, 0.3);
        }

/* --- AJUSTE DO MENU MOBILE (Para não ultrapassar a tela) --- */
@media (max-width: 768px) {
    #navLinks { /* Seletor do seu menu que abre/fecha */
        position: fixed;
        top: 70px; /* Deve ser exatamente a mesma altura do seu header */
        left: 0;
        width: 100%;
        box-sizing: border-box;
        
        /* Segurança para telas muito pequenas (ex: celulares em modo paisagem) */
        max-height: calc(100vh - 75px); 
        overflow-y: auto; /* Se o menu for maior que a tela do celular, ele ganha scroll próprio interno */
    }
}

/* ========================================================= */
/* --- SEÇÃO HERO: FOTO COMPLETA COM FUNDO VERDE ESCURO --- */
/* ========================================================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
    color: var(--hero-text-color);
    
    /* Força o verde escuro exato da marca para dar o tom correto à foto */
    background-color: #0b4a41 !important; 
    overflow: hidden;
    z-index: 1;
}

/* CAMADA 1: FOTO DO BOI (ÚNICA, TOTAL E SEM DEGRADÊ) */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    background-image: url('image/boi_bk.jpg'); 
    
    /* Garante que a foto preencha 100% da seção sem se repetir e sem cortar */
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center right !important;
    
    /* TOTALMENTE REMOVIDO: Linhas de mask-image antigas deletadas */
    
    /* Controla a intensidade da foto misturada ao verde de fundo */
    opacity: 0.25; 
    z-index: -2 !important; 
}

/* CAMADA 2: MOSAICO DE LOGOS REPETIDOS */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    background-image: url('image/boi_bk.jpg'); 
    background-repeat: repeat !important;
    background-size: 160px !important;
    
    opacity: 0.03; 
    pointer-events: none;
    z-index: -1 !important; 
}

/* GARANTE QUE TODOS OS TEXTOS E ESTATÍSTICAS FIQUEM ACIMA DO FUNDO */
.hero-container,
.hero-content,
.hero-stats,
.hero h1,
.hero p {
    position: relative !important;
    z-index: 10 !important;
}
        .hero-content {
            max-width: 600px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            padding: 8px 16px;
            border-radius: 24px;
            margin-bottom: 24px;
            font-size: 14px;
            backdrop-filter: blur(10px);
        }

        .hero-badge span {
            width: 8px;
            height: 8px;
            background: #d1ba69;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            line-height: 1.2;
            margin-bottom: 24px;
            font-weight: 700;
            color: #f9f9f9;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, #d1ba69, #967150);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 16px;
            color: rgba(255,255,255,0.85);
            line-height: 1.6;
            color: #f9f9f9;
        }

        .hero p.subtitle {
            color: rgba(255,255,255,0.7);
            font-size: 16px;
            margin-bottom: 32px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
            padding: 14px 28px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 16px;
        }

        .btn-secondary:hover {
            background: white;
            color: #095b4f;
        }


/* ========================================================= */
/* --- AJUSTE DE CORES: BADGE DA CVM (REGULADO PELA CVM) --- */
/* ========================================================= */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(11, 74, 65, 0.4) !important; /* Verde escuro da marca com 40% de opacidade */
    border: 1px solid rgba(169, 131, 79, 0.3) !important; /* Borda fina em tom dourado sutil */
    color: #ffffff !important; /* Texto em branco puro para máximo contraste */
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 25px;
    backdrop-filter: blur(4px); /* Efeito de vidro fosco elegante sobre o fundo */
}

/* A bolinha indicadora (ícone de status ligado) */
.hero-badge span {
    width: 8px;
    height: 8px;
    background-color: #2ec4b6 !important; /* Verde neon/brilhante para indicar "Ativo/Regulado" */
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #2ec4b6; /* Efeito de brilho na bolinha */
}

        /* ========================================================= */
/* --- AJUSTE DAS ESTATÍSTICAS: CENTRALIZADO E COMPACTO --- */
/* ========================================================= */

.hero-stats {
    display: flex !important;
    flex-wrap: wrap;              /* Permite quebra de linha se a tela for muito pequena */
    justify-content: center;      /* Centraliza horizontalmente na página */
    align-items: center;
    gap: 40px 80px;               /* 40px de espaço vertical (se quebrar) e 80px horizontal (espaço reduzido) */
    max-width: 900px;             /* Limita a largura máxima do bloco para aproximar os números */
    margin: 50px auto 0 !important; /* Centraliza o bloco na página e dá margem acima dele */
    width: 100%;
}

/* Estilo individual de cada item de estatística do topo */
.hero-stats .stat, 
.hero-stats > div {
    display: flex;
    flex-direction: column;
    align-items: center;          /* Centraliza o texto internamente */
    text-align: center;
}

/* Se você estiver usando tags de texto diretamente, ex: h3 ou span */
.hero-stats h3,
.hero-stats .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #a9834f !important;    /* Cor dourada padrão */
    margin-bottom: 5px;
}

.hero-stats p,
.hero-stats .stat-label {
    font-size: 1rem;
    color: #ffffff !important;
    opacity: 0.9;
}

/* --- REGRAS RESPONSIVAS DAS ESTATÍSTICAS DO TOPO --- */

/* Tablets (Telas até 992px) */
@media (max-width: 992px) {
    .hero-stats {
        gap: 30px 50px;           /* Reduz ainda mais o espaço entre eles em tablets */
        margin-top: 40px !important;
    }
    .hero-stats h3,
    .hero-stats .stat-value {
        font-size: 1.8rem;        /* Diminui levemente o tamanho do número */
    }
}

/* Celulares (Telas até 600px - Mobile) */
@media (max-width: 600px) {
    .hero-stats {
        flex-direction: column !important; /* Alinha os números um embaixo do outro no celular */
        gap: 25px !important;              /* Espaçamento vertical uniforme e limpo */
        margin-top: 35px !important;
        padding: 0 20px;
    }
    
    .hero-stats h3,
    .hero-stats .stat-value {
        font-size: 1.6rem;        /* Tamanho ideal e legível para telas pequenas */
    }
}

/* ========================================================= */
/* --- SOLUÇÃO DEFINITIVA PARA ELIMINAR ROLAGEM HORIZONTAL --- */
/* ========================================================= */

/* 1. Trava global de segurança na estrutura da página */
html, body {
    max-width: 100% !important;
    overflow-x: hidden !important; /* Impede fisicamente qualquer transbordo para os lados */
}

/* 2. Correção de largura segura para as seções principais */
.hero, 
.practice-section {
    width: 100% !important;
    max-width: 100% !important;
    overflow-hidden: !important;
    box-sizing: border-box !important; /* Força paddings a contarem DENTRO dos 100% */
}

/* 3. Ajuste fino nas Media Queries existentes para Mobile (Telas até 600px) */
@media (max-width: 600px) {
    
    /* Garante que o contêiner das estatísticas não empurre a tela */
    .hero-stats,
    .practice-stats-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Evita que o player de vídeo do YouTube estoure o layout */
    .video-container-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }
}

        /* Sections */
        section {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            color: #c4a74d;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 12px;
        }

        .gold-divider {
            width: 56px;
            height: 2px;
            background: #c4a74d;
            margin: 16px auto 24px;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            margin-bottom: 16px;
            color: #1f2937;
        }

        .section-header p {
            font-size: 18px;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

/* ========================================================= */
/* --- Layout Final: Seção VEJA NA PRÁTICA (Responsivo) --- */
/* ========================================================= */

.practice-section {
    padding: 100px 0;
    background-color: #000000 !important; /* Força o verde escuro exato do mockup */
    color: #000000 !important; /* Garante que os textos gerais sejam brancos */
    text-align: center;
}

.practice-section .section-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.practice-section .section-tag {
    display: inline-block;
    color: #a9834f; /* Tom dourado original */
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
}

/* Linha decorativa dourada embaixo do tag */
.practice-section .section-tag::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #a9834f;
}

.practice-section .section-header h2 {
    color: #ffffff !important;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.practice-section .section-header p {
    font-size: 1.1rem;
    color: #e0e0e0 !important;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto;
}

/* Centralização do wrapper do player de vídeo */
.video-container-wrapper {
    width: 100%;
    max-width: 750px; /* Mantém a proporção equilibrada do mockup */
    margin: 0 auto 60px;
}

/* Container do Vídeo Proporcional Responsivo 16:9 */
.video-block {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Mantém a proporção de vídeo padrão sem barras pretas */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4); /* Sombra elegante sob o vídeo */
}

.video-block iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Grade de Métricas - Força 4 Colunas no Desktop */
.practice-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 850px;
    margin: 0 auto;
}

.practice-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.practice-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #a9834f !important; /* Dourado nos números como solicitado */
    margin-bottom: 8px;
    line-height: 1;
}

.practice-stat-label {
    font-size: 0.95rem;
    color: #ffffff !important;
    opacity: 0.85;
    font-weight: 400;
}

/* --- REGRAS DE RESPONSIVIDADE (MEDIA QUERIES) --- */

/* Tablets (Igual ao mockup do meio: Reduz títulos e quebra em 2x2 se necessário) */
@media (max-width: 992px) {
    .practice-section { padding: 70px 0; }
    .practice-section .section-header h2 { font-size: 2.2rem; }
    
    .video-container-wrapper {
        max-width: 90%;
        margin-bottom: 40px;
    }
    
    .practice-stats-grid {
        grid-template-columns: repeat(4, 1fr); /* Tenta manter em 4 ou você pode mudar para 2 se o espaço for curto */
        gap: 20px;
    }
    
    .practice-stat-value { font-size: 1.8rem; }
    .practice-stat-label { font-size: 0.85rem; }
}

/* Smartphones (Igual ao mockup da direita: Empilha verticalmente para caber na tela pequena) */
@media (max-width: 600px) {
    .practice-section .section-header h2 { font-size: 1.8rem; }
    .practice-section .section-header p { font-size: 1rem; }
    
   /* Converte em 2 colunas para telas muito pequenas para ficar compacto e legível */
    .practice-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }
    
    .practice-stat-value { font-size: 1.6rem; }
}
        /* Como Funciona */
        #como-funciona {
            background: #f8f6f0;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .step-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .step-card:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            transform: translateY(-4px);
        }

        .step-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #095b4f, #0d7c6f);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 48px;
        }

        .step-content {
            padding: 32px;
        }

        .step-number {
            font-size: 12px;
            font-weight: 600;
            color: #d1ba69;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .step-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: #1f2937;
        }

        .step-card p {
            font-size: 15px;
            color: #6b7280;
            line-height: 1.6;
        }

/* Estilização Geral do Contêiner */
.aviso-importante-container {
    width: 100%;
    display: flex;
    justify-content: center; /* Centraliza o card horizontalmente */
    padding: 20px; /* Espaçamento ao redor do card */
    box-sizing: border-box; /* Garante que o padding não aumente o tamanho total */
}

/* Estilização do Card (Borda e Fundo) */
.aviso-importante-card {
    display: flex;
    align-items: flex-start; /* Alinha o ícone e o texto ao topo */
    gap: 16px; /* Espaço entre o ícone e o conteúdo de texto */
    background-color: #fff9e6; /* Cor de fundo amarelo claro */
    border: 1px solid #ffd633; /* Cor da borda amarela */
    border-radius: 12px; /* Cantos arredondados */
    padding: 24px; /* Espaçamento interno */
    max-width: 1000px; /* Largura máxima para não ficar muito esticado */
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); /* Sombra suave para destacar o card */
}

/* AVISO IMPORTANTE - Estilização do Ícone */
.aviso-importante-icon-wrapper {
    flex-shrink: 0; /* Impede que o ícone diminua de tamanho */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
}

.aviso-importante-icon {
    width: 24px;
    height: 24px;
    color: #ffd633; /* Mesma cor da borda para o ícone */
}

/* Estilização do Conteúdo de Texto */
.aviso-importante-content {
    flex-grow: 1; /* Permite que o texto ocupe o restante do espaço */
}

/* Título (Aviso Importante) */
.aviso-importante-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4c4c00; /* Tom escuro para o título */
    margin: 0 0 8px 0; /* Espaçamento abaixo do título */
    font-family: Arial, sans-serif; /* Fonte padrão, altere conforme necessário */
}

/* Texto Principal */
.aviso-importante-text {
    font-size: 0.95rem;
    line-height: 1.5; /* Espaçamento entre as linhas para facilitar a leitura */
    color: #666600; /* Tom médio para o texto */
    margin: 0; /* Remove margens padrão */
    font-family: Arial, sans-serif; /* Fonte padrão, altere conforme necessário */
}

/* Destaque em Negrito (Não há garantia de rentabilidade) */
.aviso-importante-highlight {
    font-weight: 700;
    color: #4c4c00; /* Cor mais escura para o destaque */
}

/* ========================================================= */
/* --- Layout Final: Seção COMO FUNCIONA (IMAGENS) --- */
/* ========================================================= */

.steps-section {
    padding: 100px 0;
    background-color: #fdfdf5 !important; /* Força o fundo claro original do mockup */
    color: #333333;
}

.steps-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.steps-section .section-header h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a3c34;
}

.steps-section .section-header p {
    font-size: 1.1rem;
    color: #666666;
    opacity: 0.8;
}

/* Grade de 3 Colunas Centralizada */
.steps-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background-color: transparent !important; /* Remove qualquer fundo branco do card */
    display: flex;
    flex-direction: column;
}

/* === Bloco da Mídia (Imagem + Overlays) === */
.step-media-wrapper {
    position: relative;
    width: 100%;
    /* Altura fixa para manter a proporção original da imagem (bois) do mockup */
    height: 250px !important; 
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    /* Adiciona a cor de fundo padrão para o overlay de texto */
    background-color: #1a7465;
}

/* FORÇA A IMAGEM A PREENCHER TOTALMENTE O QUADRO VERDE DE FUNDO */
.step-media {
    width: 100% !important;
    height: 100% !important;
    
    /* MODIFICAÇÃO CHAVE: Altera de 'contain' para 'cover' */
    object-fit: cover !important; 
    
    border-radius: 12px;
}

/* --- Overlays por cima da imagem --- */
.step-number-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(169, 131, 79, 0.4) !important; /* Dourado translúcido igual ao mockup */
    line-height: 1;
}

.step-text-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7) !important; /* Branco translúcido para a marca d'água */
    max-width: 80%;
    text-align: right;
    line-height: 1.2;
}

/* === Bloco do Texto (Abaixo da Imagem) === */
.step-content {
    padding: 0 10px;
}

.step-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: #a9834f !important; /* Dourado original */
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.step-content h3 {
    font-size: 1.6rem;
    color: #1a3c34;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-content p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
}

/* --- REGRAS DE RESPONSIVIDADE --- */

/* Tablets (Telas até 992px) */
@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Muda para 2 colunas */
        gap: 25px !important;
    }
}

/* Celulares (Telas até 600px - Mobile) */
@media (max-width: 600px) {
    .steps-section { padding: 70px 0; }
    .steps-section .section-header h2 { font-size: 2.2rem; }
    
    .steps-grid {
        grid-template-columns: 1fr !important; /* Empilha tudo em 1 coluna vertical */
        gap: 40px !important;
    }
    
    .step-media-wrapper {
        height: 200px !important; /* Reduz um pouco a altura da imagem no mobile */
    }
    
    .step-text-overlay { font-size: 1.2rem; }
    .step-number-overlay { font-size: 2.5rem; }
}

/* --- Responsividade --- */

/* Celulares (Telas até 600px) */
@media (max-width: 600px) {
    .aviso-importante-card {
        flex-direction: column; /* Alinha o ícone e o texto verticalmente no celular */
        align-items: center; /* Centraliza os elementos */
        text-align: center; /* Centraliza o texto */
        padding: 16px; /* Espaçamento interno reduzido */
    }

    .aviso-importante-icon-wrapper {
        margin-bottom: 12px; /* Espaço abaixo do ícone no mobile */
    }
    
    .aviso-importante-title {
        font-size: 1rem; /* Título levemente menor */
    }
    
    .aviso-importante-text {
        font-size: 0.85rem; /* Texto levemente menor */
    }
}


        /* Rentabilidade */
        #rentabilidade {
            background: #095b4f;
            color: white;
        }

        #rentabilidade .section-header h2 {
            color: white;
        }

        #rentabilidade .section-header p {
            color: rgba(255,255,255,0.7);
        }

        .rentabilidade-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 60px;
        }

        .rentabilidade-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 32px;
            backdrop-filter: blur(10px);
            transition: all 0.3s;
        }

        .rentabilidade-card.destaque {
            background: rgba(209, 186, 105, 0.1);
            border: 2px solid #d1ba69;
            transform: scale(1.05);
        }

        .rentabilidade-card:hover {
            border-color: #d1ba69;
        }

        .rentabilidade-badge {
            display: inline-block;
            background: #d1ba69;
            color: #095b4f;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .rentabilidade-faixa {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 8px;
        }

        .rentabilidade-retorno {
            font-size: 36px;
            font-weight: 700;
            color: #d1ba69;
            margin-bottom: 16px;
        }

        .rentabilidade-descricao {
            font-size: 14px;
            color: rgba(255,255,255,0.8);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .rentabilidade-exemplo {
            background: rgba(255,255,255,0.05);
            padding: 16px;
            border-radius: 8px;
            font-size: 13px;
        }

        .rentabilidade-exemplo div {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            color: rgba(255,255,255,0.7);
        }

        .rentabilidade-exemplo div:last-child {
            margin-bottom: 0;
            color: #d1ba69;
            font-weight: 600;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 8px;
        }

        /* Simulador */
        #simulador {
            background: #f8f6f0;
        }

        .simulador-container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: #1f2937;
            font-size: 14px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #e5e7eb;
            border-radius: 6px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #095b4f;
            box-shadow: 0 0 0 3px rgba(9, 91, 79, 0.1);
        }

        .resultado {
            background: #f0fdf4;
            border: 2px solid #86efac;
            border-radius: 8px;
            padding: 24px;
            margin-top: 32px;
            display: none;
        }

        .resultado.show {
            display: block;
        }

        .resultado-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 14px;
        }

        .resultado-item:last-child {
            border-top: 2px solid #86efac;
            padding-top: 12px;
            font-weight: 700;
            color: #15803d;
            font-size: 16px;
        }

/* ========================================================= */
/* --- OTIMIZAÇÃO DA SEÇÃO: BASE REAL SP (DADOS REAIS) --- */
/* ========================================================= */

/* 1. Ajuste Geral da Grade da Seção (Aproxima os dois blocos) */
.dados-reais-grid, 
.operation-data-container {
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important; /* Ajusta a proporção das colunas */
    gap: 30px !important;                          /* Diminui o espaço vazio entre a tabela e os cards */
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 2. Compactar a Tabela de Informações (Esquerda) */
.operation-table-rows,
.dados-reais-tabela {
    width: 100%;
}

.operation-table-row,
.tabela-linha {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 !important; /* Diminui o espaçamento vertical entre as linhas */
    border-bottom: 1px solid #eeeeee;
}

/* 3. Ajuste dos Cards de Métrica (Direita) - Menos Espaçamento */
.metrics-cards-grid,
.dados-reais-cards {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important; /* Aproxima os 4 cards brancos entre si */
    margin-bottom: 20px;
}

.metric-card,
.card-real {
    padding: 16px 20px !important; /* Reduz o padding interno dos cards */
}

/* --- REGRAS DE RESPONSIVIDADE (CORREÇÃO PARA CELULAR NÃO CORTAR) --- */

/* Tablets (Telas até 992px) */
@media (max-width: 992px) {
    .dados-reais-grid, 
    .operation-data-container {
        grid-template-columns: 1fr !important; /* Transforma em uma única coluna */
        gap: 40px !important;
    }
}

/* Celulares (Telas até 600px - Mobile) */
@media (max-width: 600px) {
    /* Garante que nada estoure as laterais do display */
    .dados-reais-grid, 
    .operation-data-container {
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }

    /* Correção da Tabela para não quebrar ou sumir com os valores à direita */
    .operation-table-row,
    .tabela-linha {
        flex-direction: row !important; /* Mantém lado a lado */
        flex-wrap: wrap !important;      /* Se o nome for grande, joga o valor para baixo sem cortar */
        gap: 8px;
        padding: 14px 0 !important;
    }

    /* Reduz levemente as fontes da tabela no mobile para caber tudo */
    .operation-table-row span:first-child {
        font-size: 0.9rem !important;
        max-width: 60%;
    }
    .operation-table-row span:last-child {
        font-size: 0.9rem !important;
        font-weight: 700;
    }

    /* Transforma os cards da direita em 1 coluna no celular para não esmagar os números */
    .metrics-cards-grid,
    .dados-reais-cards {
        grid-template-columns: 1fr !important; 
        gap: 12px !important;
    }
    
    .metric-card h3,
    .card-real .valor {
        font-size: 1.4rem !important; /* Ajusta o tamanho dos valores grandes (ex: R$ 5.793) */
    }
}


        /* Riscos */
        #riscos {
            background: white;
        }

        .riscos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 60px;
        }

        .risco-card {
            background: #fef2f2;
            border-left: 4px solid #dc2626;
            padding: 24px;
            border-radius: 8px;
        }

        .risco-card h3 {
            color: #991b1b;
            margin-bottom: 12px;
            font-size: 16px;
        }

        .risco-card p {
            color: #7f1d1d;
            font-size: 14px;
            line-height: 1.6;
        }

        /* FAQ */
        #faq {
            background: #f8f6f0;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            margin-bottom: 16px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #1f2937;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #f3f4f6;
        }

        .faq-toggle {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #d1ba69;
            font-weight: 700;
            transition: transform 0.3s;
        }

        .faq-item.open .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item.open .faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        .faq-answer p {
            color: #6b7280;
            font-size: 14px;
            line-height: 1.6;
        }

        /* Formulário */
        #investir {
            background: #000000;
            color: white;
        }

        .form-container {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 12px;
            color: #f8fafc;
        }

        .form-container .form-group label {
            color: #1f2937;
        }

        .form-info {
            background: #f0fdf4;
            border-left: 4px solid #22c55e;
            padding: 16px;
            border-radius: 6px;
            margin-bottom: 24px;
            font-size: 13px;
            color: #166534;
        }

        .form-info strong {
            color: #15803d;
        }

        .form-buttons {
            display: flex;
            gap: 12px;
            margin-top: 32px;
        }

        .btn-submit {
            flex: 1;
            background: linear-gradient(135deg, #d1ba69, #c9a961);
            color: #095b4f;
            padding: 14px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(209, 186, 105, 0.3);
        }

        .btn-whatsapp {
            flex: 1;
            background: #25D366;
            color: white;
            padding: 14px;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-whatsapp:hover {
            background: #1fa857;
        }

        .success-message {
            background: white;
            padding: 40px;
            border-radius: 12px;
            text-align: center;
            display: none;
            color: #1f2937;
        }

        .success-message.show {
            display: block;
        }

        .success-icon {
            width: 60px;
            height: 60px;
            background: rgba(9, 91, 79, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
        }

        .success-message h3 {
            font-size: 24px;
            margin-bottom: 12px;
            color: #095b4f;
        }

        .success-message p {
            color: #6b7280;
            margin-bottom: 24px;
        }

        /* Footer */
        footer {
            background: #095b4f;
            color: white;
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        footer p {
            font-size: 13px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 12px;
        }

        /* Responsivo */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero {
                padding: 60px 0;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero-stats {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .rentabilidade-card.destaque {
                transform: scale(1);
            }

            .section-header h2 {
                font-size: 32px;
            }

            .form-buttons {
                flex-direction: column;
            }
        }
        
        /* --- CORREÇÕES GLOBAIS DE RESPONSIVIDADE --- */
@media (max-width: 768px) {
    
    /* 1. Força o cabeçalho a virar duas linhas (Topo: Logo | Baixo: Botões) */
    header nav {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 14px !important;
        padding: 12px 16px !important;
    }

    /* Garante que a logo fique centralizada na primeira linha */
    header .logo-link {
        display: inline-block !important;
        margin: 0 auto !important;
    }

    /* 2. Alinha a linha de baixo: Hambúrguer na ESQUERDA e Botão na DIREITA */
    header nav > div {
        display: flex !important;
        width: 100% !important;
        justify-content: space-between !important; /* Empurra um para cada ponta */
        align-items: center !important;
        flex-direction: row-reverse !important; /* Truque mágico: inverte a ordem dos botões no mobile */
    }

    /* Ajuste do botão para ficar com uma leitura perfeita no celular */
    header .btn-primary, 
    header [class*="btn"] {
        padding: 10px 20px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        margin: 0 !important;
    }

    /* Configuração visual das 3 barrinhas do Menu Hambúrguer */
    #menuToggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10001;
    }

    #menuToggle span {
        width: 100%;
        height: 3px;
        background-color: #095b4f; /* Verde BOVCAP */
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Animação do Hambúrguer virando 'X' ao abrir */
    #menuToggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    #menuToggle.open span:nth-child(2) { opacity: 0; }
    #menuToggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    /* 3. Ajuste de altura do Menu Duplo (Evita cobrir o conteúdo do site) */
    body {
        padding-top: 130px !important; /* Espaço para as duas linhas do menu */
    }

    /* Ajusta a posição de onde a gaveta de links se abre */
    #navLinks.active {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 130px; /* Alinhado exatamente onde o menu termina */
        left: 0;
        width: 100%;
        height: calc(100vh - 130px);
        background-color: #ffffff;
        padding: 30px 24px;
        gap: 20px;
        box-sizing: border-box;
        z-index: 10000;
    }

    /* --- ANTI-QUEBRA DE OUTRAS SEÇÕES NO MOBILE --- */
    .container, 
    div[style*="display: grid"] {
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    div, section, table, tr, td, p {
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
    }
}
/* --- CONFIGURAÇÃO VISUAL DO RODAPÉ --- */
.site-footer {
    background-color: #d1ba69;
    padding: 35px 24px 25px 24px; /* Reduzido o respiro superior e inferior */
    border-top: 1px solid #eaeaea;
    font-family: system-ui, -apple-system, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px; /* Colunas do desktop mais próximas uma da outra */
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* --- COLUNA 1 (MARCA E ENDEREÇO) --- */
.footer-logo {
    max-width: 130px; /* Logo sutilmente menor para equilibrar */
    height: auto;
    margin-bottom: 12px; /* Reduzido de 20px para 12px */
}

.footer-address {
    font-size: 14px;
    line-height: 1.5;
    color: #4a5568;
    margin: 0 0 14px 0; /* Reduzido de 24px para 14px */
}

.footer-socials {
    display: flex;
    gap: 10px; /* Ícones mais juntos */
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; /* Botões das redes levemente menores */
    height: 34px;
    background-color: #095b4f;
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}

.footer-socials a:hover {
    background-color: #064037;
    transform: translateY(-2px);
}

/* --- COLUNA 2 (TEXTOS LEGAIS E COMPLIANCE) --- */
.footer-legal {
    text-align: right;
    align-items: flex-end;
    justify-content: flex-start; 
    gap: 8px; /* ATENÇÃO: Esta propriedade agora controla e aproxima as 3 linhas de texto */
}

.cvm-notice {
    font-size: 14px;
    font-weight: 700;
    color: #095b4f;
    margin: 0; /* Zerado para seguir o gap do bloco */
}

.risk-warning {
    font-size: 13px;
    line-height: 1.5;
    color: #718096;
    max-width: 480px;
    margin: 0; /* Zerado para seguir o gap do bloco */
}

.copyright {
    font-size: 12px;
    color: #a0aec0;
    margin: 4px 0 0 0; /* Pequeno ajuste fino para o direito autoral */
}

/* --- COMPORTAMENTO NO MOBILE --- */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 24px 20px 24px; /* Mais colado nos extremos do celular */
    }

    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 24px; /* Espaço reduzido entre a marca e os textos legais no celular */
    }

    .footer-col {
        align-items: center !important;
        text-align: center !important;
    }

    .footer-legal {
        align-items: center;
        text-align: center;
        gap: 10px; /* Junta os textos centrais no mobile */
    }
}

.cvm-notice {
    font-size: 14px;
    font-weight: 700;
    color: #095b4f;
    margin: 0 0 12px 0;
}

.risk-warning {
    font-size: 13px;
    line-height: 1.6;
    color: #095b4f;
    max-width: 500px; /* Evita que o aviso de risco fique esticado demais */
    margin: 0 0 24px 0;
}

.copyright {
    font-size: 12px;
    color: #095b4f;
    margin: 0;
}

/* --- COMPORTAMENTO DO RODAPÉ NO MOBILE --- */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr !important; /* Desfaz as colunas e vira uma linha abaixo da outra */
        gap: 40px;
        text-align: center; /* Centraliza todos os textos no mobile */
    }

    .footer-col {
        align-items: center !important;
        text-align: center !important;
    }

    .footer-legal {
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .risk-warning {
        max-width: 100%;
    }
}

        
    </style>