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

:root{
    --verde-header: #2E948A;
    --verde-footer: #419488;
    --verde-azulado: #009688;
  --cinza-retangulo: #C4C4C4;
  --cinza-bg: #F6F6F6;
  --rosa: #FF4081;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Ubuntu', sans-serif;
    /*overflow-x: hidden;*/
}

a{
    text-decoration: none;
}

.container{
    width: 90%;
    margin: 0 auto;
}

header{
    width: 100vw;
    height: 117px;
    background-color:  var(--verde-header);
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.25);
}

header .nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 90%;
    max-width: 1255px;
    margin: 0 auto;
}

header .nav-container nav a{
    text-transform: uppercase;
    color: #FDFDFD;
    font-size: 20px;
    font-weight: 700;
    margin: 15px;
    transition: all 0.3s ease;
}

header .nav-container nav a:hover{
    color: #C4C4C4;
}

/*final do header*/




main{
    display: flex;
    /* flex-direction: row; */
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.corpo{
    width: 496px;
    height: 419px;
    left: 136px;
    top: 222px;
    border-radius: 4px;
    margin: 105px 201px 101px 136px;
}

h1{  
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 46px;
    color: #FF4081;
    margin: 0 342px 44px 0;
}

form{
    width: 100%;
}

form input{
  padding-left: 22px;
}

.nome{
    background: #FFFFFF;
    border: 1px solid #686868;
    border-radius: 7px;
    margin-bottom: 15px;
    Width: 493px;
    Height: 32px;
}

.email{
    background: #FFFFFF;
    border: 1px solid #686868;
    border-radius: 7px; 
    margin-bottom: 14px;
    Width: 493px;
    Height: 32px; 
}

.text{
    Width: 493px;
    Height: 193px;
    background: #FFFFFF;
    border: 1px solid #686868;
    border-radius: 7px;
    margin-bottom: 15px;
}

.entrar{
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 800;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    text-transform: lowercase;
    Width: 108px;
    Height: 32px;
    background: #FF4081;
    border-radius: 50px;
    border: 2px #FF4081 solid;
    color: #fff;
    transition: all 0.3s ease;
}

.entrar:hover{
  background-color: #fff;
  color: var(--rosa);
}

.contato{
    width: 444px;
    height: 444px;
    left: 833px;
    top: 199px;
    margin: 82px 163px 99px 0;
}





/*footer começa aqui*/


footer{
    width: 100vw;
    background-color: var(--verde-footer);
  }
  
  footer .container{
    height: 265px;
    width: 90%; 
    padding-bottom: 30px;
    max-width: 1255px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  footer .container .footer-links{
    display: flex;
    flex-direction: column;
  }
  
  footer .container .footer-links a{
    font-size: 20px;
    padding: 5px;
    font-family: 'Ubuntu';
    color: #fff;
  }

  footer .container .footer-btn{
    display: flex;
    flex-direction: column;
    
  }
  
  footer .container .footer-btn button{
    background-color: var(--verde-azulado);
    color: #fff;
    border: 2px solid #fff;
    border-radius: 62px;
    padding: 14px;
    margin: 13px;
    width: 289px;
    font-size: 20px;
    cursor: pointer;
  }

  @media (max-width:580px){
    footer .container{
      flex-direction: column;
    }
    footer .container .footer-links{
      flex-direction: row;
      margin: 15px auto;
    }
    footer .container .footer-btn button{
      margin: 4px;
      width: 260px;
    }
    footer .container img{
      padding-top: 20px;
    }
  }


  @media (max-width:850px){

main{
    flex-direction: column;
    margin-left: 50px;
}

    footer .container img{
      width: 200px;
    }
    footer .container .footer-btn button{
      font-size: 14px;
      width: 180px;
    }

    header{
      height: 150px;
    }
    header .nav-container{
      flex-direction: column;
      justify-content: space-evenly;
    }
    header .nav-container nav a{
      font-size: 14px;
    }

    h1{
      margin-top: 20px;
    }

  }

  @media (max-width: 1190px){
    
.nome{
  Width: 80%;
  Height: 32px;
}
    
.email{
  Width: 80%;
  Height: 32px; 
}
    
.text{
  Width: 80%;
  Height: 193px; 
}
    
.entrar{
  Width: 80%;
  Height: 32px;
    
}
    
.contato {
  width: 80%;
  margin: 0;
  margin-top: 3em;
}

.corpo{
    width: 80%;
    margin: 0 auto;
    margin-left: 2em;
}
}
  