/* Estilos do Menu */
header {
    background-color: black;
    padding: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.logo-container img {
    max-height: 100px;
    width: auto;
}

/* Menu para desktop */
nav {
    width: 100%;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav li {
    text-align: center;
}

nav a {
    color: rgb(224,190,82);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
}

nav a:hover {
    color: white;
}

nav a.active {
    color: black;
    background-color: rgb(224,190,82);
    border-radius: 20px;
}

/* Estilos do menu hambúrguer (inicialmente oculto) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0.5rem 0;
    z-index: 100;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: rgb(224,190,82);
    transition: all 0.3s ease;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 80;
}

/* Estilos responsivos para dispositivos móveis */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 80px 2rem 2rem 2rem;
        transition: right 0.3s ease;
        gap: 1rem;
        z-index: 90;
        align-items: center;
    }

    nav ul.active {
        display: flex;
        right: 0;
    }

    nav li {
        width: 100%;
    }

    nav a {
        display: block;
        padding: 1rem;
    }

    .menu-overlay.active {
        display: block;
    }
} 