.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 80%;
  margin: 0 auto; /* Center the container horizontally */
  flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 20px;
margin-top: 12px;
}

button {
  font-family: "Cantarell", sans-serif;
  background: var(--color-beige);
  color: var(--color-purple);
  font-size: 1rem; /* Smaller font for mobile */
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0px 5px var(--color-lightpurple);
  font-weight: 700;
  min-width: 100%; /* Stacks on mobile */
  display: block;
  border-radius: 8px;
  border: solid 1px var(--color-lightestpurple);
  margin: auto;
  padding: 16px 8px; /* Larger padding for touch */
  position: center;
  cursor: pointer; /* Always show pointer for mobile */
}

.futuro {
  background-color: var(--color-lightgreen);
  color: var(--color-orange);
}

button:hover {
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
    background-color: var(--color-lightestpurple);
  cursor: pointer;
  color: var(--color-lighterblack);
  transform: scale(1.01);
}

button:active {
  border: solid 0px #40e0d0;
}

/* Tablet styles */
@media (min-width: 768px) {
  .button-container {
    flex-direction: row; /* Return to horizontal layout on tablet and up */
    max-width: 40%;
    gap: 20px;
  }

  button {
    margin-top: 5%;
    font-size: 0.9rem;
    max-width: 90px;
  }
}

/* Desktop styles */
@media (min-width: 1024px) {
  button {
    margin-top: 5%;
    font-size: 1rem;
    max-width: 55%;
  }
  .button-container {
    width: 80%;
  }
}
