/* Importando a fonte Poppins com todas as variações */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Estilo geral para o corpo da página */
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400; /* Peso regular */
  color: #333; /* Cor do texto */
  margin: 0;
  padding: 0;
  background-color: #fff;
}

/* Estilo para títulos */
h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700; /* Título em negrito */
  font-size: 2.5em;
  color: #333;
}

h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600; /* Um pouco menos pesado que o h1 */
  font-size: 2em;
  color: #333;
}

h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 500; /* Médio */
  font-size: 1.75em;
  color: #333;
}

h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 400; /* Regular */
  color: #333;
}

/* Estilo para parágrafos */
p {
  font-family: "Poppins", sans-serif;
  font-weight: 300; /* Leve para parágrafos */
  font-size: 1em;
  line-height: 1.6; /* Linha mais espaçada para legibilidade */
  color: #555;
  margin-bottom: 15px;
}

/* Estilo para links */
a {
  font-family: "Poppins", sans-serif;
  font-weight: 400; /* Regular */
  color: #00b050; /* Verde para links */
  text-decoration: none;
}

a:hover {
  color: #008f46; /* Verde mais escuro no hover */
  text-decoration: underline;
}

/* Estilo para botões */
button, input[type="submit"] {
  font-family: "Poppins", sans-serif;
  font-weight: 600; /* Semibold para botões */
  background-color: #00b050;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover, input[type="submit"]:hover {
  background-color: #008f46; /* Tom mais escuro no hover */
}

/* Aplicando variações de Poppins conforme necessário */
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

/* Estilos itálicos */
.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

