/* Amepa & CAC Alliance - estilos compartidos */

html {
  scroll-behavior: smooth;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.text-shadow-sm {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.ambient-shadow-sm {
  box-shadow: 0 2px 10px rgba(29, 45, 53, 0.05);
}

.ambient-shadow-md,
.ambient-shadow,
.card-shadow {
  box-shadow: 0 4px 20px rgba(29, 45, 53, 0.05);
}

.ambient-shadow-lg {
  box-shadow: 0 8px 30px rgba(29, 45, 53, 0.08);
}

.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(29, 45, 53, 0.08);
  border-color: #006971;
}

.input-animated {
  background-color: transparent;
  border-bottom: 2px solid #c1c7d2;
  transition: all 0.3s ease;
}

.input-animated:focus {
  outline: none;
  border-bottom-color: transparent;
  box-shadow: 0 0 0 2px #003e6f inset;
  border-radius: 0.25rem;
  background-color: #ffffff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #c1c7d2;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #727781;
}

/* Slider (calculadora) */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: #003e6f;
  cursor: pointer;
  margin-top: -8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: #d2e4ff;
  border-radius: 4px;
}
