h1 {
  font-size: 30px;
  font-family: Poppins;
  font-weight: 700;
  font-style: normal;
  color: var(--color-text-light);
}

h2 {
  color: var(--color-text-light);
  font-size: 18px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
}

p,
ul li,
a {
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  font-style: normal;
  color: var(--color-text-light);
}

span {
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  font-style: normal;
  color: var(--color-secondary);
}

.ContainerPrivacy {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin: auto;
}

.Privacy {
  width: 100%;
}

.btn-voltar {
  text-align: center;
  text-decoration: none;
  color: var(--color-text-black);
  background: var(--background-light);
  font-size: 12px;
  font-family: Poppins;
  font-weight: 500;
  font-style: normal;
  width: 150px;
  height: max-content;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  box-shadow: #f8b500 0px 0px 30px;
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

@media screen and (max-width: 500px) {
  h1 {
    font-size: 20px;
  }

  p,
  ul li,
  a,
  span {
    font-size: 10px;
  }
}
