body {
    background-color: black;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
    width: 150px;
    height: auto;
}

.menu-container {
    display: flex;
    align-items: center;
    margin-left: 200px; /*Ajuste esta margem para controlar o espaço entre o logotipo e o menu*/
}


.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0 10px;
}

.nav-item {
    text-decoration: none;
    color: #fff;
    padding: 15px 20px;
    display: block;
    position: relative;
    transition: color 0.3s;
}

.nav-item::before,
.nav-item::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.nav-item::before {
    bottom: 0;
}

.nav-item::after {
    bottom: 0;
    background-color: #ffdd57; /* Cor de destaque */
    transition-delay: 0.15s;
}

.nav-item:hover::before,
.nav-item:hover::after {
    width: 100%;
    left: 0;
}

.nav-item:hover {
    color: #ffdd57; /* Cor de destaque */
    transition: color 0.3s;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.titulo {
    text-align: center;
    color: #fff;
    margin-top: 60px;
    font-size: 32px;
}

.lista {
    display: flex;
    gap: 20px;
}

.img {
    transition: 0.5s;
    width: 350px;
    height: 350px;
    margin-top: 100px;
}

.lista:hover .img {
    filter: grayscale(1);
    transform: scale(0.9);
}

.lista .img:hover {
    filter: none;
    transform: scale(1);
}

footer {
    width: 100%;
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.footer-logo img {
    width: 150px;
}

.footer-bottom {
    margin-top: 1px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

/* Media Queries */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .nav-list {
        flex-direction: column;
        width: 100%;
        display: none;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-item {
        padding: 15px;
        text-align: left;
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    .nav-list.active {
        display: flex;
    }

    .titulo {
        font-size: 24px;
    }

    .img {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 100px;
    }

    .titulo {
        font-size: 20px;
        margin-top: 20px;
    }

    .img {
        width: 100%;
        height: auto;
        margin-top: 10px;
    }

    footer {
        padding: 5px 0;
    }

    .footer-logo img {
        width: 100px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}
