/* estilos globais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.home {
  font-family: Mulish, sans-serif;
  background: #fff;
  color: #404040;
  line-height: 1.5;
}

/* cada section ocupa exatamente uma viewport height */
.full-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  /* só pra dar um contraste leve entre seções */
  background: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}
.full-section:nth-of-type(even) {
  background: #fff;
}

/* título centralizado */
.full-section h1 {
  color: #007565;
  font-size: 2.5rem;
}

/* wrapper dos botões */
.buttons-wrapper {
  display: flex;
  gap: 1rem;
}

/* botões estilizados */
.btn {
  display: inline-block;
  background: #007565;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn:hover {
  background: #005a87;
}
