/* VARIÁVEIS */
:root {
  --button-bg-color: #816350;
  --button-hover-bg-color: #6A5345;
}

.botoes {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  justify-content: center;
}

.botoes a {
  text-decoration: none;
}

.botoes button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--button-bg-color);
  color: white;
  border: 1px solid var(--button-hover-bg-color);
  border-radius: 8px;
  min-width: 280px;
  min-height: 140px;
  font-size: 1.6rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.botoes button i {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.botoes button:hover {
  background-color: var(--button-hover-bg-color);
  color: var(--secondary-color);
  transform: translateY(6px);
}

.botoes button:hover i{
    color: var(--secondary-color);
}

@media (max-width: 768px) {
  .botoes button {
    font-size: 1.4rem;
  }
}

@media (max-width: 670px) {
  .botoes {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .botoes a {
    width: 100%;
  }

  .botoes button {
    width: 100%;
  }
}