#pc {
    display: flex;
    justify-content: center;
}

#mobile {
    gap:50px;
    display: none;
    justify-content: center;
}

header {
    width: 100%;
    height: 8rem;
    color: white;
    position: fixed;
    top: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    /* display: grid; */
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    overflow: visible !important;
    /* background-color: rgba(128, 128, 128, 0.4); */
    background-image: linear-gradient(90deg, #888888A6 0%, #888888A6 100%);
}

header img {
    width: 4rem;
    height: 4rem;
    transition: transform 0.5s ease-in-out, color 0.5s ease-in-out, text-shadow 0.5s ease-in-out;
    transform-origin: center center;
}

header #whatsapp,
header #instagram {
    width: 30px;
    height: 30px;
}

#mobile {
    display: none;
}

nav {
    justify-content: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px
}

nav ul li a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    justify-self: center;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

nav ul li a:hover {
    color: black;
    /* text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); */
    transform: scale(1.01);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: white;
    transition: all 0.3s ease;
}

.logo img {
    width: 130px;
    height: 130px;
}

.logo a {
    outline: none;
    text-decoration: none;
}

.esconder{
    display: none;
}


@media (max-width: 768px) {
    nav ul {
        gap: 50px;
    }

    #pc {
        display: none;
    }

    #mobile {
        align-items: center;
        justify-content: center;
        display: flex;
        width: 100vw;
        overflow: visible !important;
    }

    .logo img {
        width: 85px;
        height: 85px;
    }

    header {
        height: 5rem;
        width: 100vw;
        padding: 10px 0;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .dropdown {
        overflow: visible !important;
        position: relative;
    }

    .dropdown-btn {
        background-color: black;
        color: white;
        align-items: center;
        justify-content: center;
        position: relative;
        /* Mantém o botão centralizado */
        border: none;
        width: 100px;
        padding: 10px;
        cursor: pointer;
        font-size: 16px;
        border-radius: 5px;
        z-index: 1001;
        /* Garante que o botão fique acima do conteúdo dropdown */
        display: block;
        margin: 0 auto;
        /* Centraliza o botão horizontalmente */
    }

    .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        /* Fica logo abaixo do botão */
        left: 0;
        /* Alinha o conteúdo do dropdown à esquerda */
        width: 100%;
        /* Ocupa 100% da largura do container */
        background-color: grey;
        text-align: center;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        transition: 1s ease-in-out;
    }


    .dropdown:hover .dropdown-content li:nth-child(1) {
        transition: 0.2s;
    }

    .dropdown:hover .dropdown-content li:nth-child(2) {
        transition: 0.4s;
    }

    .dropdown:hover .dropdown-content li:nth-child(3) {
        transition: 0.8s;
    }

    .dropdown-content a {
        color: white;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

    .dropdown-content a:hover {
        background-color: #575757;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown:not(:hover) .dropdown-content {
        display: none;
    }

}