html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #080a11; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #00f2fe; }

.orb { position: absolute; border-radius: 50%; filter: blur(150px); opacity: 0.1; mix-blend-mode: screen; pointer-events: none; }
.orb-1 { top: -10%; right: 10%; width: 600px; height: 600px; background: radial-gradient(circle, #00f2fe 0%, transparent 80%); animation: float-orb-1 20s ease-in-out infinite; }
.orb-2 { top: 30%; left: -10%; width: 700px; height: 700px; background: radial-gradient(circle, #9b51e0 0%, transparent 80%); animation: float-orb-2 25s ease-in-out infinite; }
.orb-3 { bottom: 10%; right: 5%; width: 600px; height: 600px; background: radial-gradient(circle, #e056fd 0%, transparent 80%); animation: float-orb-3 22s ease-in-out infinite; }

@keyframes float-orb-1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-30px, 20px); } }
@keyframes float-orb-2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(20px, -30px); } }
@keyframes float-orb-3 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-20px, -20px); } }

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.glow-card { transition: all 0.3s ease; }
.glow-card:hover { border-color: rgba(0, 242, 254, 0.3); box-shadow: 0 0 30px rgba(0, 242, 254, 0.1); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-icon { transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

.whatsapp-widget { animation: pulse-wa 2s infinite; }
@keyframes pulse-wa { 0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); } 70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); } }

.hero-img-glow { position: relative; }
.hero-img-glow::after { content: ''; position: absolute; bottom: -2px; left: 10%; width: 80%; height: 3px; background: linear-gradient(90deg, transparent, #00f2fe, transparent); border-radius: 50%; }

.flow-line { position: relative; }
.flow-line::before { content: ''; position: absolute; top: 0; left: 50%; width: 2px; height: 100%; background: linear-gradient(to bottom, #00f2fe, #9b51e0); }
