*{
    padding: 0;
    box-sizing: border-box;
    margin: 0;
    list-style: none;
    text-decoration: none;
    overflow-x: hidden;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000;
}
nav img{
    height: 120px;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 2rem;
    transform: translateX(25%);
    width: 100vw;
}

nav ul li {
}

nav ul li a {
    text-decoration: none;
    color: #000;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f1f1f1;
}

footer .footer-links a {
    text-decoration: none;
    color: #000;
    margin: 0 10px;
}

footer .social-icons img {
    width: 24px;
    height: 24px;
    margin: 0 5px;
}
.carrinho{
    width: 32px;
    height: 32px;
    margin-right: 35px;
}
.cadastro{
    width: 32px;
    height: 28px;
    margin-right: 35px;
}

@media(width<500px){
    footer {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
    }
    footer .footer-links a {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    footer .social-icons img {
        margin-top: 20px;
    }

}

