/* Custom styles for the Metálicas Díaz Security Landing Page */

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0b0147; /* brand-navy */
}
::-webkit-scrollbar-thumb {
  background: #64748b; /* brand-steel */
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #fca311; /* brand-gold */
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Text Glows */
.text-glow-gold {
  text-shadow: 0 0 15px rgba(252, 163, 17, 0.5);
}

/* Gold Gradient Borders */
.gold-gradient-border {
  position: relative;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(to right, #fca311, #e69500) border-box;
  border: 2px solid transparent !important;
}

.gold-gradient-border-dark {
  position: relative;
  background: linear-gradient(#0b0147, #0b0147) padding-box,
              linear-gradient(to right, #fca311, #e69500) border-box;
  border: 2px solid transparent !important;
}

/* Fade animations for interactive steps */
.step-fade-in {
  animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Shimmer Button Effect */
.shimmer-btn {
  position: relative;
  overflow: hidden;
}
.shimmer-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: none;
}
.shimmer-btn:hover::after {
  left: 140%;
  transition: all 0.7s ease-in-out;
}
