* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: white;
    color: black;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 3px solid black;
}

.icons {
    display: flex;
    gap: 15px;
}

.icons img {
    width: 30px;
    cursor: pointer;
}

.logo {
    margin: 40px 0;
}

.logo img {
    width: 250px; /* Ajuste do tamanho do logo Nike */
}

.promo {
    border-top: 3px solid black;
    padding: 20px 0;
}

.promo h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.produtos {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}

.produto img {
    width: 120px; /* Ajuste do tamanho das imagens de produtos */
}

footer {
    margin-top: 40px;
    padding: 20px 40px;
    border-top: 3px solid black;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contato p {
    margin-bottom: 5px;
    font-size: 16px;
}

/* Ajuste do tamanho e alinhamento das logos das redes sociais */
.redes-sociais {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.redes-sociais img {
    width: 40px; /* Ajuste do tamanho das logos */
    height: auto;
    margin: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .icons {
        margin-top: 10px;
    }

    .produtos {
        flex-direction: column;
        align-items: center;
    }

    .produto img {
        width: 100px;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .redes-sociais {
        margin-top: 10px;
    }
}
