:root {
  --main-bg-color: green;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.btn{
  border-radius: 20px !important;
  padding: 10px 30px !important;
}
.btn.btn-outline-primary {
  /* background-color: #92B396; */
  border: 2px solid #92B396;
  color: #92B396;
  

}
.btn.btn-outline-primary:hover {
  /* background-color: #92B396; */
  background-color: #92B396;
  border: 2px solid #92B396;
  color: white;
  

}
.btn:active {
  /* background-color: #92B396; */
  background-color: #82d98c !important;
  border: 2px solid #82d98c !important;
  color: white !important;

}


.btn.btn-primary {
  background-color: #92B396;
  border: 2px solid  #92B396;

}
.btn.btn-primary:hover {
  background-color: #96c79c;
  border: 2px solid #96c79c;

}
/* Tipografia mais suave */
html {
  font-size: 16px;
  line-height: 1.5;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;

}

/* Remover estilos padrões de listas */
ul, ol {
  list-style: none;
}

/* Remover decoração de links */
a {
  text-decoration: none;
  color: inherit;
}

/* Ajustes para botões */
button, input, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

/* Tornar imagens responsivas */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Corpo do site ocupa toda a tela */
