@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');
*{
    padding: 0;
    border: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Archivo", sans-serif;
    font-style: normal;
    font-weight: 500;
}
:root{
    --dark-10: #121214;
    --dark-20: #F3F7FF;
    --dark-30: #FFFFFF;
    --brand-color: #7CA2F4;
}
header{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--dark-20);
}
#frete{
    margin: 1% 0%;
}
.welcome{
    background-image: url("/assents/imgs/image-michael-jordan.png");
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--dark-30);
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding: 4% 16%;
}
.welcome img{
    width: 11rem;
    padding: 7% 0% 0% 0%;
}
#title-welcome{
    padding: 4% 0% 2% 0%;
}
#description-welcome{
    width: 39%;
    font-weight: 400;
}
.products{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 3rem 0rem 0rem 0rem;
    gap: 1rem;
}
#header-products{
    font-weight: 600;
}
#cards-products{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 0 2rem;
    margin: 3rem 0rem 0rem 0rem;
}
.card-product{
    width: 20rem;
    background-color: var(--dark-30);
    border-radius: 8px;
    overflow: hidden;
}
#img-card{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-20);
    padding: 1rem;
}
#img-card img{
    width: 80%;
}
.inform-product{
    width: 100%;
    padding: 1rem;
}
#name-product{
    padding: 0.5rem 0;
    font-size: 14px;
}
#tag-product{
    color: var(--brand-color);
    font-size: 12px;
    padding: 0.5rem 0;
}
#price-product{
    font-size: 16px;
    padding: 0.5rem 0;
    font-family: "Space Grotesk", sans-serif;
}
footer{
    margin: 3rem 0rem 0rem;
    display: flex;
    justify-content: center;
    color: var(--dark-30);
    background-color: var(--dark-10);
}
footer p{
    font-size: 14px;
    padding: 2rem 0rem;
}
footer a{
    color: var(--dark-30);
}

/* Responsividade */
@media (max-width: 768px) {
    #description-welcome{
        width: 50%;
    }
    #cards-products {
        flex-direction: column;
        align-items: center;
    }
    .card-product {
        width: 90%;
    }
}