@charset "UTF-8";
/* Reset de estilos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Ajuste para alinhamento vertical */
  flex-direction: column;
}

/* Estilos para a seção de abertura */
.opening {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: start;
  max-width: 800px;
  margin: 0 auto; /* Centralizar a seção */
  padding: 20px;
  color: #ffffff; /* Cor do texto principal */
}

a {
  color: #ae5ee3;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #ab3fe0;
}

p {
  text-align: left; /* Alinhar texto à esquerda */
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

ul {
  margin-bottom: 20px;
  list-style-type: circle;
  padding-left: 20px;
}

h1, h2 {
  color: #ae5ee3; /* Cor dos cabeçalhos */
  margin-bottom: 15px;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
}

@media screen and (max-width: 900px) {
  .opening {
    padding: 10px;
  }
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 370px) {
  .opening {
    padding: 5px;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 18px;
  }
  p {
    font-size: 14px;
  }
}/*# sourceMappingURL=style_politicas.css.map */