/* Importando uma fonte moderna do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Customização do Card da Calculadora */
.custom-card {
  border: none;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

/* Customização dos Inputs */
.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Animação do Botão */
.custom-btn {
  border-radius: 10px;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  transform: scale(1.02);
  letter-spacing: 0.5px;
}

/* Suavização de transição para o ícone do Dark Mode */
#themeToggle i {
  transition: all 0.3s ease;
}