/* Acumin Pro — add licensed .woff2 files to assets/fonts/ */
@font-face {
  font-family: 'Acumin Pro';
  src: url('./assets/fonts/AcuminPro-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Acumin Pro';
  src: url('./assets/fonts/AcuminPro-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Acumin Pro';
  src: url('./assets/fonts/AcuminPro-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Acumin Pro';
  src: url('./assets/fonts/AcuminPro-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Acumin Pro';
  src: url('./assets/fonts/AcuminPro-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Acumin Pro';
  src: url('./assets/fonts/AcuminPro-Black.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-sans: 'Acumin Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #0276c9;
}

/* Glassmorphism Styles */
.glass-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

#main-header.bg-white {
  background: #ffffff !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-card-dark {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Active Nav State */
.active-nav-link {
  color: #0276c9 !important;
  font-weight: 600;
}

.active-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0276c9;
  border-radius: 9999px;
}

/* Custom Grid Dot Background */
.bg-grid-dots {
  background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

/* Float Animations */
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.pulse-whatsapp {
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring-phone {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(2, 118, 201, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(2, 118, 201, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(2, 118, 201, 0);
  }
}

.pulse-phone {
  animation: pulse-ring-phone 2.2s infinite;
}

/* Hover & Transitions */
.card-hover-effect {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-hover-effect:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

/* Timeline Custom Connectors */
.timeline-dot::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #cbd5e1;
  top: 50%;
  left: 100%;
  z-index: -1;
}

@media (max-width: 1024px) {
  .timeline-dot::after {
    display: none;
  }
}

/* Custom Gradients */
.gradient-text {
  background: linear-gradient(135deg, #0f172a 30%, #0276c9 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-light {
  background: linear-gradient(135deg, #ffffff 40%, #bae0fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Process section — sticky scroll */
.process-visual-panel {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.process-visual-panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

.process-step-panel .step-card {
  opacity: 0.45;
  transform: scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.process-step-panel.is-active .step-card {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 25px 50px -12px rgba(2, 118, 201, 0.15);
}

.process-step-panel.is-active .process-step-indicator {
  background-color: #0e94eb;
  box-shadow: 0 0 0 4px rgba(14, 148, 235, 0.25);
}

.process-dot.is-active {
  background-color: #0e94eb !important;
}

@media (max-width: 1023px) {
  .process-step-panel .step-card {
    opacity: 1;
    transform: none;
  }
}
