@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  color: #0f172a;
  background: #f8fafc;
}
.font-display {
  font-family: "Manrope", sans-serif;
}
.nav-link {
  padding: 0.65rem 0.8rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #475569;
  transition: 0.2s;
}
.nav-link:hover,
.nav-link.active-nav {
  color: #0f172a;
  background: #f1f5f9;
}
.mobile-nav-link {
  display: block;
  padding: 0.8rem 0.9rem;
  border-radius: 0.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #334155;
}
.mobile-nav-link:hover,
.mobile-nav-link.active-nav {
  background: #f1f5f9;
  color: #0f172a;
}
.mobile-sub-link {
  display: block;
  padding: 0.65rem 0.9rem;
  color: #64748b;
  font-size: 0.875rem;
}
.menu-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 1rem;
  align-items: center;
}
.menu-item:hover {
  background: #f8fafc;
}
.menu-item b {
  display: block;
  font-size: 0.85rem;
  color: #0f172a;
}
.menu-item small {
  display: block;
  color: #94a3b8;
  font-size: 0.72rem;
  margin-top: 2px;
}
.menu-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #ecfeff;
  color: #0891b2;
  font-size: 10px;
  font-weight: 800;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border-radius: 0.8rem;
  background: #0f172a;
  color: white;
  font-size: 0.875rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  transition: 0.2s;
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: #172554;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1rem;
  border-radius: 0.8rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  font-size: 0.875rem;
  font-weight: 800;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1rem;
  border-radius: 0.8rem;
  background: #10b981;
  color: white;
  font-size: 0.875rem;
  font-weight: 800;
}
.btn-dark-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  font-size: 0.875rem;
  font-weight: 700;
}
.footer-link {
  display: block;
  color: #94a3b8;
  transition: 0.2s;
}
.footer-link:hover {
  color: white;
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.active-nav {
  background: #f1f5f9 !important;
  color: #0f172a !important;
}
.pill.active {
  background: #0f172a !important;
  color: #fff !important;
  border-color: #0f172a !important;
}
.hero-grid {
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
}
.shine {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(34, 211, 238, 0.28),
      transparent 34%
    ),
    radial-gradient(circle at 10% 90%, rgba(99, 102, 241, 0.2), transparent 30%);
}
.lock-chip {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 10px;
  font-weight: 900;
  flex: none;
}
.plan-tag {
  display: inline-flex;
  margin-top: 14px;
  border-radius: 999px;
  background: #ecfeff;
  color: #0e7490;
  padding: 0.35rem 0.65rem;
  font-size: 10px;
  font-weight: 900;
}
.scale-tag {
  background: #f5f3ff;
  color: #6d28d9;
}
