body {
    margin: 0 !important; /* Remover Espaços Inesperados: Controle Preciso do Layout: Consistência entre Navegadores: */
    padding: 0;
}

a {
    font-family: KoHo;
    text-decoration: none;
}

.header {
    background: #141414;
    padding-inline: 8px;
    margin-bottom: 1.5px; 
}

.nav {
    max-width: 1280px;
    height: 80px;
    margin-inline: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-buttons{
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-buttons a {
    font-size: 18px;
    color: white;
    padding-block: 16px;
}

/*--------------------------------------- MENU HAMBURGUER VVVVVVVV */ 

.hamburger {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 9999;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.4s;
}

@media (max-width: 768px) {
    
    .hamburger {
        display: block;
    }

    .nav-buttons {
        position: fixed;
        top: -20px;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #141414;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 50px;
        overflow-y: auto; 
        z-index: 9998;
        opacity: 0; 
        transform: translateY(-100%); 
    }

    .nav-buttons.active {
        opacity: 1; 
        transform: translateY(0); 
    }

    .nav-buttons a {
        font-size: 24px;
        color: white;
        text-decoration: none;
        margin-bottom: 20px; 
        opacity: 0;
        transform: translateY(20px); 
        transition: opacity 0.3s ease-in, transform 0.3s ease-in; 
    }

    .nav-buttons.active a {
        opacity: 1; 
        transform: translateY(0); 
    }

    .hamburger.active div {
        background-color: white;
    }

    .hamburger.active .bar1 {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .bar2 {
        opacity: 0;
    }

    .hamburger.active .bar3 {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    body.menu-open {
        overflow: hidden; 
    }
}