.hamburger-container {
    display: none;
    position: relative;
    height: 50px;
    width: 50px;
    cursor: pointer;
    transform: rotate(0deg);
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    z-index: 1001;
}

.hamburger {
    width: 18px;
    height: 8px;
    position: relative;
    display: block;
    margin-left: -20px;
    top: 130%;
}

.hamburger .bar {
    width: 100%;
    height: 1px;
    display: block;
    position: relative;
    background: #FFF;
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition-delay: 0s;
}

.hamburger .bar.topBar {
    transform: translateY(0px) rotate(0deg);
}

.hamburger .bar.btmBar {
    transform: translateY(6px) rotate(0deg);
}

@media (max-width: 699px) {
    .hamburger-container {
        display: inline-block;
        position: absolute;
        right: 15px;
        top: 1px;
        transition: top 0.3s ease;
    }

    .hamburger-container.scrolled {
        top: -10px;
    }

    .itens-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #121b33;
        transition: all 0.5s ease-out;
        z-index: 1000;
        padding-top: 80px;
        overflow-y: auto;
    }

    .itens-menu.active {
        right: 0;
    }

    .hamburger-container.active .hamburger .bar.topBar {
        transform: translateY(4px) rotate(45deg);
    }

    .hamburger-container.active .hamburger .bar.btmBar {
        transform: translateY(3px) rotate(-45deg);
    }

    .menu {
        display: block !important;
        padding: 20px;
    }

    .menu ul {
        padding: 0 !important;
    }

    .menu ul li {
        display: block;
        margin: 15px 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }

    .menu ul li:last-child {
        border-bottom: none;
    }

    .menu ul li a {
        color: #fff;
        font-size: 18px;
        display: block;
        padding: 10px 0;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .menu ul li a:hover {
        color: rgba(255, 255, 255, 0.8);
    }

    .menu ul ul {
        position: static !important;
        display: block !important;
        background: rgba(255, 255, 255, 0.05);
        padding: 10px 0 !important;
        margin-top: 10px;
        border-radius: 5px;
    }

    .menu ul ul li {
        border-bottom: none;
        margin: 5px 0;
        padding-bottom: 5px;
    }

    .menu ul ul li a {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
    }

    .menu + .menu {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 20px;
        padding-top: 20px;
    }

    .botao-inscricao-topo {
        display: block;
        margin: 30px auto;
        text-align: center;
        max-width: 250px;
        background: #fff;
        color: #121b33;
        padding: 12px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 30px;
    }

    .botao-inscricao-topo:hover {
        background: rgba(255, 255, 255, 0.9);
    }
} 