@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

header{
    background-color: #181818;
    width: 100%;
    height: 60px;
    color: #F9F9F9;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 1rem;
}

nav{
    background-color: #F9F9F9;
    color: black;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1.5rem;
}

#loja-jordan{
    background: linear-gradient(
        rgba(0,0,0,.6),rgba(0,0,0,.3)
      ), url('images/Air-Jordan-1-Retro-High-OG-Wmns-TWIST-Feminino\ 1.png') no-repeat;
    background-size: cover;
    width: 100%;
    height: 378px;
    color: #F9F9F9;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

h1{    
    font-weight: 700;
    line-height: 39.01px;
    font-size: 2rem;
    margin-bottom: 19px;
}

.loja-texto{
    font-weight: 600;
    width: 460px;
    line-height: 35.31px;
    font-size: 1.125rem;
    margin-left: 3.125rem;
    text-align: initial;

}

h2{
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 15px;
}

#destaques{
    width: 100%;

}

.destaques-textos{
    margin-top: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 60px;
    text-align: center;
}

.cards-destaques{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.card{
    background-color: #EBE9EA ;
    width: 300px;
    height: 302px;
    margin-left: 13px;
    margin-bottom: 39px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jordan{
    transition: 0.8s;
}

.jordan:hover{
    transform: translateY(-10px);
}



footer{
    margin-top: 100px;
    background-color: #181818;
    height: 60px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 1.125rem;
}