@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300&family=Montserrat:wght@100;200;300&family=Poppins:ital,wght@0,200;1,200&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    width: 100vw;
    height: 100vh;
    font-family: 'Merriweather';
    font-weight: 400;
    overflow-x: hidden;


}
header{
    width: 100%;
    height: 60%;
    background: #D7D5FF;
    display: flex;
    justify-content: space-around;
    align-items: center;  

}
header #text-primary{
    width: 20%;
    line-height: 1.6em;

}
header #text-primary h1{
    font-size: 2em;
    line-height: 1.3em;
    font-weight: 400;
    color: #2B2B2B;
    font-family: 'Merriweather';

}
header #text-primary h4{
    font-size: 0.9em;
    color: #555555;
    font-family: 'Lato';
    font-style: normal;
    line-height: 32px;
    font-weight: 400;
}
header #text-primary button{
    background: #6C63FF;
    border-radius: 5px;
    padding: 0.6em 2.5em;
    font-size: 1em;
    color:#fff;
    border: none;
    margin-top:1.9em;
    cursor: pointer;
}
header img{
    width: 27em;
    height: auto;
}

/*-----------section-----------*/
section{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5em;
    flex-direction: column;
    margin-bottom: 5rem;
}

section ul{
    display: flex;
    align-items:center ;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
     width: 70%;
    gap: 3.5em;
}
section ul li {
    width: 17em;
    height: 24em;
    background: #FFFFFF;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
section ul li::before{
    content: '';
    display: block;
    height: 13em;
    width: 17em;
    margin-bottom: 1em;
}
section ul li:nth-child(1)::before{
  
    background-color: #FF6363;

}
section ul li:nth-child(2)::before{
  
    background: #63ECFF;
}
section ul li:nth-child(3)::before{
  
    background: #F363FF;
}
section ul li:nth-child(4)::before{
  
    background: #63FF73;
}
section ul li:nth-child(5)::before{
  
    background: #FFDD63;
}
section ul li:nth-child(6)::before{
  
    background: #6663FF;
}

section ul li p{
 margin-left:1.5rem;
}
section ul li p:nth-child(1){
    
font-family: 'Merriweather';
font-style: normal;
font-weight: 700;
font-size: 24px;
line-height: 30px;
display: flex;
align-items: flex-end;
color: #2B2B2B;
margin-bottom: 0.7em;
}
section ul li p:nth-child(2){
    
font-family: 'Lato';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 30px;
/* or 167% */

display: flex;
align-items: center;

color: #555555;
}
/*----------footer---------*/
footer{
    height: 42rem;
    background: #D7D5FF;    
    padding-top: 5rem;
    padding-bottom:5rem;
}
footer form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap:1rem;
}
footer form h5{
    
font-family: 'Merriweather';
font-style: normal;
font-weight: 400;
font-size: 32px;
line-height: 40px;
display: flex;
align-items: center;

color: #2B2B2B;

}
footer form input{
    width:27.64rem;
    height: 3.8rem;
    border-radius: 6px;
    border:none;
    font-size:1rem;

    color: rgba(110, 114, 117, 0.74);
        padding: 0.7rem;
}
footer form input 
footer form input::placeholder{
    padding:0.5rem;
  
    top:0.5rem;
    font-style: normal;
font-weight: 400;
font-size: 1rem;
line-height: 22px;
/* identical to box height */

display: flex;
align-items: center;

color: rgba(110, 114, 117, 0.74);
}
footer form input.mensagem{
    height: 9.7rem;
    border:none;
    background: #FFFFFF;
    border-radius: 6px;
}
footer form input.mensagem::placeholder{
    padding:0.2rem;
    position: absolute;
    top:0.5rem;
    font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 22px;
/* identical to box height */

display: flex;
align-items: center;

color: rgba(110, 114, 117, 0.74);

}
footer form button{
    height: 2.9rem;
        
    background: #6C63FF;
    box-shadow: 0px 5px 5px rgba(23, 23, 23, 0.1);
    border-radius:5px;
    border:none;
    text-align: center;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    /* identical to box height */

    width:27.64rem;
    color: #FFFFFF;
}

/*--------mobile------*/

@media (max-width:400px){
   
section ul{
    width:90%;
}
section ul li {
 width: 100%;
}
section ul li::before{
    width: inherit;
}
}
@media (max-width:600px){
    header img{
        width: 22em;
    }
    
    header #text-primary h1{   
        font-size:1.8rem;
        font-weight:550;

}
header{
    display: flex;
    flex-direction: column;
    height:80%;
    
}
header #text-primary{
    width: 80%;
   

}
footer form input{
    width: 80%;
  }
  footer form button{
    width: 80%;
    font-size: 15px;
  }
  footer form h5{
    font-size:25px;
  }
}

@media (max-width:900px) {
    
    header img{
        width: 22em;
    }
    
    header #text-primary h1{   
        font-size:1.8rem;
        font-weight:550;

}
header{
    display: flex;
    flex-direction: column;
    height:80%;
    
}
header #text-primary{
    width: 80%;
   

}


}