:root {
    --gold: #d4af37;
    --white: #ffffff;
    --black: #000000;
    --neon-green: #39ff14;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: var(--white);
}

/* Header & Navegação */
header {
    background: var(--white);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img { height: 50px; }

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gold);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: var(--gold);
    cursor: pointer;
    user-select: none;
}

/* Seção Hero (Index) */
/* ... (restante do seu CSS anterior) ... */

.hero {
    /* Mantendo fielmente a estrutura original */
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    /* Mantendo a borda original */
    border-bottom: 8px solid var(--neon-green);

    /* --- ADICIONANDO IMAGEM COM OVERLAY --- */
    
    /* 1. Definimos o overlay (camada preta) e a imagem juntos */
    /* Substitua 'imagem-hero.jpg' pelo caminho real da sua imagem */
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), /* Overlay Preto com 70% de opacidade */
        url('imagem-hero.jpg') no-repeat center center; /* Imagem de fundo */
    
    /* 2. Garante que a imagem cubra todo o espaço sem distorcer */
    background-size: cover;

    /* --- FIM DA ADIÇÃO DA IMAGEM --- */

    /* Importante: Mover a cor do texto para o final para garantir prioridade */
    color: var(--neon-green);
    
    /* Adicionando um leve shadow no texto para realçar o Neon sobre a imagem */
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

/* ... (restante do seu CSS anterior) ... */

/* Container de Vídeo e Iframe */
section {
    padding: 40px 20px;
    text-align: center;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
}

iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 4px solid var(--gold);
    border-radius: 8px;
    background: #000;
}

.selector-buttons {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.selector-buttons button {
    background: var(--gold);
    color: white;
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.2s;
}

.selector-buttons button:hover {
    transform: scale(1.05);
    background: #b8962d;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 30px;
    text-align: center;
    font-size: 13px;
    margin-top: 50px;
}

/* Responsividade do Menu */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        border-bottom: 3px solid var(--gold);
    }

    .nav-menu.active {
        display: flex;
    }
}