
body,
* {
  font-family: 'Inter', serif;
  margin: 0;
  padding: 0;
}

/* cores e fontes */
:root {
  --verde: #004d2a;
  --branco: #fff;
  --verde-footer: #004d2a;
  --amarelo:#f5b400;
}
.introducao{
    background-color: none;
}
.politicas{
display: flex;
justify-content: center;
align-items: center;
padding: 2%;
}

.politicas h1{
    display: block;
    color: var(--verde);
}
.leia{
    color: var(--verde);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
  
}
.leia section{
  
    width: 100%;
}
.leia h2{
 
    text-align: center;
    align-self: center;
    background-color: #8bc9ad;
    margin-bottom: 1%;
}
.leia p{
    padding-left: 4%;
    padding-bottom: 1%;
}
.leia ul{
    padding-left: 8%;
    padding-bottom: 1%;
    font-size: small;

}
.importante {
    text-align: center;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2% 0;
}
.importante h1{
    background-color: none;
}
.importante p{
    width: 80%;
}

/* footer */

footer {
    background-color: var(--verde-footer);
  }
  .logo-acima {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .logo-acima img {
    width: 10%;
  }
  .footer-abaixo {
    display: flex;
    justify-content: flex-end;
    align-items: end;
    flex-direction: column;
    padding-right: 2%;
    color: var(--branco);
    padding-bottom: 2%;
  }
  .footer-abaixo h3 {
    font-size: 1.2vw;
  }
  .footer-abaixo p {
    font-size: 1vw;
    padding-bottom: 1%;
    font-weight: 200;
  }
  .copy {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--branco);
    padding: 2%;
    font-size: 1vw;
    font-weight: 200;
  }
  .privacidades{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .privacidades a{
    color: var(--branco);
    text-decoration: none;
    padding: 1%;
    transition: all .5s ;
    font-size: smaller;
  }
  .privacidades a:hover{
    color: var(--amarelo);
  }
  @media(max-width:768px){
      /* Rodapé */
  footer {
    padding: 10px;
  }
  .logo-acima img {
    width: 20%;
  }
  .footer-abaixo h3,
  .footer-abaixo p,
  .copy p {
    font-size: 3.5vw;
  }
  .copy p{
    text-align: center;
  }
  }