/* garante que podemos usar 100% da altura */
html, body {
  height: 100%;
  margin: 0;
}

/* container centralizado */
.home-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  transform: translateY(-20%);  /* “sobe” 20% da própria altura */
  text-align: center;
}


/* espaçamento abaixo do título */
.home-container h1 {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--gray-dark); /* ou qualquer cor desejada */
}

/* agrupa botões lado a lado */
.buttons {
  display: flex;
  gap: 1rem;
}

.btn-grau {
  display: inline-block;
  padding: 30px 60px;
  background-color: #00577B;    /* Azul TJDFT */
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color .2s ease;
}
.btn-grau:hover {
  background-color: #00577B;
}

