/* Estilização da seção principal */
.finance-options {
  background-color: var(--text);
  color: var(--white);
  text-align: center;
  padding: 3rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Estilização do título */
.finance-options h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

/* Container das opções */
.options {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* Estilização dos botões de opção */
.option-button {
  width: 300px;
  height: 300px;
  background-color: var(--white);
  color: var(--text);
  padding: 2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.5rem;
}

/* Ícones das opções */
.option-button img {
  width: 100px;
  height: 100px;
}

/* Efeito de hover nos botões */
.option-button:hover {
  background-color: var(--hover);
  transform: translateY(-10px);
  color: var(--white);
}
