/* Custom styles can be added here if needed */
body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
}

.hero-bg {
  background-color: #f8fafc;
  background-image: radial-gradient(
      circle at top right,
      #a0d1f3,
      transparent 40%
    ),
    radial-gradient(circle at bottom left, #ecfccb, transparent 50%);
  position: relative;
}

.hero-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px; 
  background: linear-gradient(
    to top,
    #ffffff 10%,

    /* Cor de fundo da PRÓXIMA seção */ 
    rgba(255, 255, 255, 0)
      
  );
  pointer-events: none; 
}

.cta-button {
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* --- Efeito de hover para os links de navegação --- */
.nav-link {
  position: relative;
  transition: color 0.3s ease-in-out;
  padding-bottom: 4px;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #3B82F6; /* Cor do sublinhado (azul) */
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}

.nav-link:hover {
  color: #3B82F6;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.mobile-nav-link:hover {
  background-color: #f1f5f9; /* slate-100 */
  color: #3B82F6; /* blue-600 */
}

.card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s, box-shadow 0.3s;
}

#vantagens .card {
  background-color: #f8fafc; /* bg-slate-50 */
}

#conformidade .card {
  background-color: #f8fafc; /* bg-slate-50 */
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.06);
}

.step-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid #e5e7eb;
  height: 100%;
  position: relative;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease-in-out;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08),
    0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

.step-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background-color: #3B82F6; /* bg-blue-600 */
  color: white;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  border: 4px solid #f8fafc; /* bg-slate-50 */
}

.step-icon-container {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.blinking-dot {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes pulseLogo {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.animate-pulse-logo {
  animation: pulseLogo 4s ease-in-out infinite;
}

