.hero{
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-section{
    max-width: 1240px;
    margin: 30px 0;
    width: 100%;
    text-align: center;
    padding: 3.2rem;
    border-radius: 8px;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: arial;
}

.hero-titulo{
    margin-bottom: 7rem;
}

.hero-titulo h1{
    font-size: 4rem;
    margin-bottom: 2rem;

}

.hero-titulo p {
    font-size: 2rem;
   color: hsl(210, 18%, 19%);
   font-weight: 300;
}

@media(max-width: 698px) {
    .hero-titulo{
        width: 100%;
        margin-bottom: 6rem;

    }
    .hero-titulo h1{
        font-size: 3rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    .hero-titulo p {
    font-size: 1.6rem;
    }

    .hero-section{
        padding: 1.6rem;
    }
  
}



.grid-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    justify-content: center;
    padding: 0 3.2rem;


}

.grid-item{
    display: flex;
    flex-direction: column;
    border: solid 1px hsl(220, 100%, 94%);
    box-shadow: 0 0 10px hsla(0, 0%, 0%, .2);
    border-radius: 5px;
    background-color:   hsl(210, 18%, 70%); 
    max-width: 100%;
}
.item-img{
    
    background-color: hsl(220, 55%, 82%);
    border-radius: 5px 5px 0 0;

}

.item-img img{
    display: block;
    max-width: 100%;
    margin: 3.2rem auto;

}

.item-descricao{
    height: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 1.4rem;
    background-color: hsl(0, 0%, 93%);
   color: hsl(210, 18%, 10%);

}

.item-descricao p{
    color: hsl(210, 60%, 50%);
    font-size: 1.6rem;
}

.item-descricao h1{
    font-size: 1.8rem;
    font-weight: 600;
}

.item-descricao h2{
    font-size: 2rem;
    font-weight: 700;
}


