* { font-family: 'Poppins', sans-serif; }

.glass-nav {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(194,194,203,0.3);
}

.shadow-l1 { box-shadow: 0 4px 20px rgba(93,93,116,0.05); }
.shadow-l2 { box-shadow: 0 12px 30px rgba(93,93,116,0.12); }
.shadow-orange { box-shadow: 0 8px 30px rgba(255,117,44,0.25); }

.hero-bg {
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(255,117,44,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 10% 80%, rgba(62,64,149,0.06) 0%, transparent 60%),
              #fcf8ff;
}

.blob-orange {
  background: #FF752C;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.feature-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(93,93,116,0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  border: 1px solid rgba(226,224,251,0.6);
}

.feature-card:hover {
  box-shadow: 0 12px 30px rgba(93,93,116,0.12);
  transform: translateY(-4px);
}

.pricing-recommended {
  border-top: 4px solid #FF752C;
  box-shadow: 0 12px 40px rgba(255,117,44,0.18);
  transform: scale(1.04);
  z-index: 10;
  position: relative;
}

.btn-primary {
  background: #FF752C;
  color: white;
  border-radius: 1rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(255,117,44,0.35);
}

.btn-secondary {
  background: white;
  color: #3E4095;
  border: 1.5px solid #3E4095;
  border-radius: 1rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #F1F1F9;
  transform: scale(1.02);
}

.stat-badge {
  background: white;
  border-radius: 1rem;
  padding: 0.875rem 1.25rem;
  box-shadow: 0 4px 20px rgba(93,93,116,0.1);
  border: 1px solid rgba(226,224,251,0.8);
}

details summary::-webkit-details-marker { display: none; }
details[open] summary .accordion-icon { transform: rotate(45deg); }
.accordion-icon { transition: transform 0.25s ease; }

#mobile-menu { transition: max-height 0.3s ease, opacity 0.3s ease; max-height: 0; overflow: hidden; opacity: 0; }
#mobile-menu.open { max-height: 400px; opacity: 1; }

.mesh-blob {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(60px);
  opacity: 0.18;
  pointer-events: none;
}

.counter { font-variant-numeric: tabular-nums; }

.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #25D366;
  border-radius: 9999px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.2s ease;
}

.whatsapp-btn:hover { transform: scale(1.1); }

.col-highlight { background: rgba(255,117,44,0.04); }

input:focus, textarea:focus {
  outline: none;
  border-color: #FF752C !important;
  box-shadow: 0 0 0 3px rgba(255,117,44,0.15);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF752C, #ffb595);
  z-index: 9999;
  transition: width 0.1s ease;
}