.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    background: transparent;
    box-sizing: border-box;
}

.site-header.sticky {
    position: fixed;
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    max-height: 70px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav .menu {
    display: flex;
    flex-direction: row;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav .menu li {
    list-style: none;
}

.main-nav .menu li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav .menu li a:hover {
    color: #fca311;
}


/* Estilo do botão hambúrguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 30px;
    /* Fixa o botão à direita */
    top: 12px;
    /* Alinha o botão com o topo */
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 10px;
}

.menu-close-btn {
    display: none;
    /* Esconde o botão por padrão */
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    color: white;
    font-size: 24px;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

@media (max-width: 768px) {
    .main-nav .menu {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.8);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        padding: 40px 0;
        box-sizing: border-box;
    }

    .main-nav .menu li {
        margin: 0;
    }

    .main-nav .menu li a {
        color: white;
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav .menu.active {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .menu-close-btn.show {
        display: block;
    }

    body.menu-open,
    html.menu-open {
        overflow: hidden;
        height: 100%;
    }
}