.hamburger-menu {
    display: none;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hamburger {
        display: block;
        z-index: 10;
    }

    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgb(0, 82, 180);
        clip-path: circle(100px at 90% -15%);
        transition: 1s ease-out;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        gap: 0;
        pointer-events: none;
        z-index: 5;
    }

    .nav-list a {
        font-size: 24px;
        opacity: 0;
    }

    .nav-list li:nth-child(1) a {
        transition: 0.5s 0.2s;
    }

    .nav-list li:nth-child(2) a {
        transition: 0.5s 0.4s;
    }

    .nav-list li:nth-child(3) a {
        transition: 0.5s 0.6s;
    }

    /* Estilos ativos */

    .nav.active .nav-list {
        clip-path: circle(1500px at 90% -15%);
        pointer-events: all;
    }

    .nav.active .nav-list a {
        opacity: 1;
    }

    .nav.active .hamburger {
        position: fixed;
        top: 26px;
        right: 16px;
        border-top-color: transparent;
    }

    .nav.active .hamburger::before {
        transform: rotate(135deg);
    }

    .nav.active .hamburger::after {
        transform: rotate(-135deg);
        top: -7px;
    }

    #about {
        clear: both;
        padding: 50px 0;
        text-align: center;
        font-family: "Poppins", sans-serif;
        z-index: 1;
        position: relative;
    }

    #about .title {
        font-size: 24px;
        margin: 10px 0;
    }

    #about .text-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (min-width: 769px) {
    nav {
        display: flex;
        gap: 32px;
        align-items: center;
    }

    .hamburger-menu {
        display: none;
    }

    #about {
        clear: both;
        padding: 50px 0;
        text-align: center;
        font-family: "Poppins", sans-serif;
        z-index: 1;
        position: relative;
    }

    #about .title {
        font-size: 24px;
        margin: 10px 0;
    }

    #about .text-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    body {
        font-size: 14px;
    }

    .produto:hover {
        transform: none;
    }
}