:root {
    --primary-color: #CCFF00; /* Verde Limão */
    --bg-dark: #0A0A0A;
    --text-dark: #000000;
}

/* --- Menu Hambúrguer (Mobile) --- */
.menu-toggle {
    display: none; /* Escondido por padrão no Desktop */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10001;
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: #000; /* Cor dos traços */
    transition: 0.3s;
    display: block;
}

/* --- Overlay do Menu Lateral --- */
#mobile-overlay {
    position: fixed;
    top: 0;
    right: -100%; /* Começa escondido à direita */
    width: 280px;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    border-left: 4px solid #000;
    display: flex;
    flex-direction: column;
    padding: 100px 30px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

#mobile-overlay.open {
    right: 0;
}

#mobile-overlay a {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    color: #000;
    text-decoration: none;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* --- Estado Ativo do Botão (Transforma em X) --- */
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* --- Responsividade (Media Query) --- */
@media (max-width: 1023px) {
    .menu-toggle {
        display: flex; /* Mostra o botão em telas menores que 1024px */
    }
}

/* --- Botão Voltar ao Topo --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border: 2px solid #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    box-shadow: 5px 5px 0px #000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    color: #333333;
    padding: 20px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}

.cookie-banner.hidden {
    display: none;
    opacity: 0;
    bottom: -100px;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.btn-primary { background-color: #CCFF00; color: #333; }
.btn-secondary { background-color: #e0e0e0; color: #333; }