*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#080812;
  --surface:#0f0f1e;
  --surface2:#161628;
  --purple:#8b5cf6;
  --purple-light:#a78bfa;
  --cyan:#22d3ee;
  --text:#e2e8f0;
  --muted:#94a3b8;
  --muted2:#64748b;
}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;background:var(--bg);color:var(--text);overflow-x:hidden;line-height:1.6}

body::before{
  content:'';position:fixed;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events:none;z-index:0;opacity:0.4;
}

/*==================================
NAV PREMIUM
==================================*/

nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  transition:.35s;
}

.nav-container{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:calc(100% - 40px); /* respiro de 20px de cada lado, evita ficar colado nas bordas */
  max-width:1300px;
  margin:18px auto 0;
  padding:0 25px;
  background:rgba(10,10,20,.55);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.05);
  border-radius:18px;
  box-shadow:0 10px 50px rgba(0,0,0,.25);
  transition:.35s;
  position:relative;
  /* overflow:hidden removido: cortava o dropdown do menu mobile */
}

.nav-container::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:1px;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(34,211,238,.6),
    rgba(139,92,246,.7),
    transparent
  );
}

nav.scrolled .nav-container{
  height:66px;
  margin-top:10px;
  background:rgba(8,8,18,.88);
  box-shadow:0 20px 70px rgba(0,0,0,.45);
}

.nav-links{
  display:flex;
  gap:34px;
}

.nav-links a{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
  font-size:.93rem;
  position:relative;
  transition:.3s;
}

.nav-links a:hover{
  color:#fff;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:linear-gradient(
    90deg,
    var(--purple-light),
    var(--cyan)
  );
  transition:.3s;
}

.nav-links a:hover::after{
  width:100%;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.btn-login{
  padding:11px 18px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.btn-login:hover{
  color:var(--cyan);
}

.btn-nav{
  padding:13px 24px;
  border-radius:12px;
  background:linear-gradient(
    135deg,
    var(--purple),
    var(--purple-light)
  );
  text-decoration:none;
  font-weight:700;
  color:#fff;
  box-shadow:0 0 30px rgba(139,92,246,.35);
  transition:.35s;
}

.btn-nav:hover{
  transform:translateY(-2px);
  box-shadow:0 0 50px rgba(139,92,246,.65);
}

.menu-btn{
  display:none;
  width:46px;
  height:46px;
  border:none;
  background:rgba(255,255,255,.05);
  color:#fff;
  font-size:24px;
  border-radius:12px;
  cursor:pointer;
}


.nav-mobile-actions{
  display:none;
}


@media(max-width:980px){

  .nav-links,
  .nav-actions{
    display:none;
  }

  .menu-btn{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .nav-container{
    height:70px;
  }

}

/* HERO */
.hero{
  position:relative;min-height:100vh;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;padding:120px 1.25rem 80px;overflow:hidden;
}
.orb{position:absolute;border-radius:50%;filter:blur(80px);pointer-events:none;animation:float 8s ease-in-out infinite}
.orb-1{width:500px;height:500px;background:rgba(139,92,246,0.18);top:-100px;left:-150px;animation-delay:0s}
.orb-2{width:400px;height:400px;background:rgba(34,211,238,0.12);bottom:-50px;right:-100px;animation-delay:-3s}
.orb-3{width:300px;height:300px;background:rgba(139,92,246,0.1);top:50%;left:50%;transform:translate(-50%,-50%);animation-delay:-6s}
@keyframes float{0%,100%{transform:translateY(0) scale(1)}50%{transform:translateY(-30px) scale(1.05)}}
.orb-3{animation:float2 10s ease-in-out infinite}
@keyframes float2{0%,100%{transform:translate(-50%,-50%) scale(1)}50%{transform:translate(-50%,-55%) scale(1.08)}}
.hero::after{
  content:'';position:absolute;inset:0;
  background-image:linear-gradient(rgba(139,92,246,0.06) 1px,transparent 1px),linear-gradient(90deg,rgba(139,92,246,0.06) 1px,transparent 1px);
  background-size:60px 60px;
  mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,black 30%,transparent 100%);
  pointer-events:none;z-index:0;
}
.hero-content{position:relative;z-index:2;max-width:800px;width:100%}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(139,92,246,0.1);border:1px solid rgba(139,92,246,0.3);
  color:var(--purple-light);padding:6px 16px;border-radius:999px;
  font-size:0.78rem;font-weight:600;letter-spacing:0.05em;text-transform:uppercase;
  margin-bottom:1.5rem;animation:fadeUp 0.6s ease both;
}
.badge-dot{width:7px;height:7px;border-radius:50%;background:var(--cyan);animation:pulse 2s ease-in-out infinite;flex-shrink:0}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.6;transform:scale(0.8)}}
.hero h1{
  font-size:clamp(2rem,5vw,3.5rem);font-weight:900;line-height:1.08;
  letter-spacing:-0.03em;color:#fff;margin-bottom:1.25rem;
  animation:fadeUp 0.6s ease 0.1s both;
}
.hero h1 .grad{background:linear-gradient(135deg,var(--purple-light),var(--cyan));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero-sub{
  font-size:clamp(0.875rem,2.5vw,1.1rem);color:var(--muted);
  max-width:600px;margin:0 auto 2rem;line-height:1.7;
  animation:fadeUp 0.6s ease 0.2s both;
}
.hero-actions{display:flex;gap:0.875rem;justify-content:center;flex-wrap:wrap;animation:fadeUp 0.6s ease 0.3s both}
.btn-hero-primary{
  background:linear-gradient(135deg,var(--purple),var(--purple-light));
  color:#fff;padding:14px 28px;border-radius:10px;
  font-size:0.95rem;font-weight:700;text-decoration:none;
  box-shadow:0 0 30px rgba(139,92,246,0.5);
  transition:all 0.3s;display:flex;align-items:center;gap:8px;white-space:nowrap;
}
.btn-hero-primary:hover{box-shadow:0 0 50px rgba(139,92,246,0.8);transform:translateY(-2px)}
.btn-hero-secondary{
  background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.12);
  color:#fff;padding:14px 28px;border-radius:10px;
  font-size:0.95rem;font-weight:600;text-decoration:none;transition:all 0.3s;white-space:nowrap;
}
.btn-hero-secondary:hover{background:rgba(255,255,255,0.08);border-color:rgba(255,255,255,0.25)}
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.hero-stats{
  display:flex;gap:2rem;justify-content:center;flex-wrap:wrap;
  margin-top:3rem;padding-top:2.5rem;
  border-top:1px solid rgba(255,255,255,0.06);
  animation:fadeUp 0.6s ease 0.4s both;
}
.stat{text-align:center;min-width:80px}
.stat-num{font-size:1.8rem;font-weight:900;color:#fff;letter-spacing:-0.02em}
.stat-num span{background:linear-gradient(135deg,var(--purple-light),var(--cyan));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.stat-lbl{font-size:0.75rem;color:var(--muted2);margin-top:4px;font-weight:500}

/* MARQUEE */
.marquee-section{
  padding:50px 0;overflow:hidden;background:var(--surface);
  border-top:1px solid rgba(255,255,255,0.05);border-bottom:1px solid rgba(255,255,255,0.05);
}
.marquee-wrap{display:flex;gap:3rem;animation:marquee 25s linear infinite;width:max-content}
@keyframes marquee{to{transform:translateX(-50%)}}
.marquee-item{display:flex;align-items:center;gap:12px;white-space:nowrap;color:var(--muted2);font-size:0.85rem;font-weight:500}
.marquee-item span{font-size:1.2rem}

/* FEATURES */
.cards-section{
  position:relative;padding:80px 1.25rem;overflow:hidden;
  background:linear-gradient(180deg,var(--bg) 0%,var(--surface) 50%,var(--bg) 100%);
}
.cards-section h2{text-align:center;font-size:clamp(1.6rem,4vw,3rem);font-weight:800;color:#fff;margin-bottom:0.875rem;letter-spacing:-0.02em}
.cards-section h2 span{background:linear-gradient(135deg,var(--purple-light),var(--cyan));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.section-sub{text-align:center;color:var(--muted);max-width:550px;margin:0 auto 3rem;font-size:0.9rem;line-height:1.6}
.floating-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;max-width:1100px;margin:0 auto}
.f-card{
  background:var(--surface2);border:1px solid rgba(139,92,246,0.15);
  border-radius:20px;padding:1.75rem;
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
  position:relative;overflow:hidden;animation:cardFloat 6s ease-in-out infinite;
}
.f-card:nth-child(2){animation-delay:-2s}
.f-card:nth-child(3){animation-delay:-4s}
.f-card:nth-child(4){animation-delay:-1s}
.f-card:nth-child(5){animation-delay:-3s}
.f-card:nth-child(6){animation-delay:-5s}
@keyframes cardFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
.f-card::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(139,92,246,0.06) 0%,transparent 60%);pointer-events:none}
.f-card:hover{border-color:rgba(139,92,246,0.4);box-shadow:0 20px 60px rgba(139,92,246,0.2);transform:translateY(-12px) !important}
.f-card-icon{
  width:52px;height:52px;border-radius:14px;
  background:linear-gradient(135deg,rgba(139,92,246,0.2),rgba(34,211,238,0.1));
  border:1px solid rgba(139,92,246,0.3);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.125rem;font-size:1.4rem;flex-shrink:0;
}
.f-card h3{font-size:0.975rem;font-weight:700;color:#fff;margin-bottom:0.4rem}
.f-card p{font-size:0.83rem;color:var(--muted);line-height:1.6}
.f-card-glow{position:absolute;bottom:-20px;right:-20px;width:100px;height:100px;border-radius:50%;background:radial-gradient(circle,rgba(139,92,246,0.15) 0%,transparent 70%);pointer-events:none}

/* HOW IT WORKS */
.how-section{padding:80px 1.25rem;position:relative}
.steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1.5rem;max-width:1000px;margin:2.5rem auto 0}
.step{position:relative;text-align:center;padding:1.75rem 1.25rem}
.step-num{
  width:52px;height:52px;border-radius:50%;
  background:linear-gradient(135deg,var(--purple),var(--purple-light));
  display:flex;align-items:center;justify-content:center;
  font-size:1.05rem;font-weight:900;color:#fff;
  margin:0 auto 1.125rem;box-shadow:0 0 25px rgba(139,92,246,0.4);
}
.step h3{font-size:0.975rem;font-weight:700;color:#fff;margin-bottom:0.4rem}
.step p{font-size:0.83rem;color:var(--muted);line-height:1.5}
.step-connector{position:absolute;top:26px;left:calc(50% + 35px);width:calc(100% - 70px);height:1px;background:linear-gradient(90deg,var(--purple),transparent)}

/* TECH */
.tech-section{padding:80px 1.25rem;position:relative;overflow:hidden;background:var(--surface)}
.tech-inner{display:grid;grid-template-columns:1fr 1fr;gap:50px;max-width:1100px;margin:0 auto;align-items:center}
.tech-text h2{font-size:clamp(1.6rem,3.5vw,2.8rem);font-weight:800;color:#fff;line-height:1.2;margin-bottom:1.125rem;letter-spacing:-0.02em}
.tech-text h2 span{background:linear-gradient(135deg,var(--purple-light),var(--cyan));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.tech-text p{color:var(--muted);line-height:1.7;margin-bottom:1.25rem;font-size:0.9rem}
.tech-list{list-style:none}
.tech-list li{display:flex;align-items:flex-start;gap:10px;padding:7px 0;font-size:0.875rem;color:var(--muted)}
.tech-list li::before{content:'→';color:var(--purple-light);font-weight:700;flex-shrink:0;margin-top:1px}
.tech-visual{position:relative}
.tech-mockup{
  background:var(--surface2);border:1px solid rgba(139,92,246,0.2);
  border-radius:16px;overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,0.5),0 0 0 1px rgba(139,92,246,0.1);
}
.mockup-bar{background:rgba(139,92,246,0.06);border-bottom:1px solid rgba(255,255,255,0.05);padding:10px 14px;display:flex;align-items:center;gap:7px;flex-wrap:wrap}
.mockup-dot{width:10px;height:10px;border-radius:50%;flex-shrink:0}
.mockup-body{padding:1.25rem;font-family:'DM Mono',monospace;font-size:0.68rem;line-height:1.8;overflow-x:auto}
.code-purple{color:var(--purple-light)}
.code-cyan{color:var(--cyan)}
.code-green{color:#4ade80}
.code-muted{color:var(--muted2)}
.code-white{color:#fff}
.tech-visual::before{
  content:'';position:absolute;top:-50%;left:-50%;width:200%;height:200%;
  background:conic-gradient(from 0deg at 50% 50%,transparent 0deg,rgba(139,92,246,0.05) 60deg,transparent 120deg);
  animation:spin 20s linear infinite;pointer-events:none;
}
@keyframes spin{to{transform:rotate(360deg)}}

/* PRICING */
.pricing-section{padding:80px 1.25rem;background:linear-gradient(180deg,var(--bg) 0%,rgba(139,92,246,0.03) 50%,var(--bg) 100%)}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;max-width:1000px;margin:2.5rem auto 0;align-items:start}
.price-card{background:var(--surface2);border:1px solid rgba(255,255,255,0.07);border-radius:24px;padding:2.25rem 1.75rem;transition:all 0.3s;position:relative;overflow:hidden}
.price-card.featured{border-color:rgba(139,92,246,0.5);background:linear-gradient(135deg,rgba(139,92,246,0.08),var(--surface2));box-shadow:0 0 60px rgba(139,92,246,0.2)}
.price-card.featured::before{content:'MAIS POPULAR';position:absolute;top:36px;right:-36px;background:linear-gradient(135deg,var(--purple),var(--purple-light));color:#fff;font-size:0.6rem;font-weight:800;letter-spacing:0.1em;padding:5px 40px;transform:rotate(45deg)}
.price-badge{display:inline-block;padding:4px 12px;border-radius:999px;font-size:0.7rem;font-weight:700;text-transform:uppercase;letter-spacing:0.05em;margin-bottom:1.125rem}
.price-badge.free{background:rgba(107,114,128,0.2);color:#9ca3af;border:1px solid rgba(107,114,128,0.3)}
.price-badge.pro{background:rgba(139,92,246,0.15);color:var(--purple-light);border:1px solid rgba(139,92,246,0.35)}
.price-badge.max{background:rgba(34,211,238,0.1);color:var(--cyan);border:1px solid rgba(34,211,238,0.3)}
.price-val{font-size:2.75rem;font-weight:900;color:#fff;line-height:1;margin-bottom:4px}
.price-val sup{font-size:1.1rem;font-weight:600;vertical-align:super}
.price-val sub{font-size:0.85rem;color:var(--muted);font-weight:400}
.price-desc{font-size:0.78rem;color:var(--muted);margin-bottom:1.75rem;line-height:1.5}
.price-features{list-style:none;margin-bottom:1.75rem}
.price-features li{display:flex;align-items:flex-start;gap:10px;padding:7px 0;border-bottom:1px solid rgba(255,255,255,0.04);font-size:0.83rem;color:var(--muted)}
.price-features li:last-child{border-bottom:none}
.pf-check{width:18px;height:18px;border-radius:50%;background:rgba(139,92,246,0.2);color:var(--purple-light);display:flex;align-items:center;justify-content:center;font-size:0.65rem;flex-shrink:0;margin-top:1px}
.pf-check.cyan{background:rgba(34,211,238,0.15);color:var(--cyan)}
.btn-price{width:100%;padding:12px;border-radius:10px;font-size:0.875rem;font-weight:700;text-align:center;text-decoration:none;display:block;transition:all 0.3s;cursor:pointer;border:none;font-family:inherit}
.btn-price.outline{background:transparent;border:1px solid rgba(255,255,255,0.15);color:#fff}
.btn-price.outline:hover{border-color:var(--purple-light);color:var(--purple-light)}
.btn-price.purple{background:linear-gradient(135deg,var(--purple),var(--purple-light));color:#fff;box-shadow:0 0 25px rgba(139,92,246,0.4)}
.btn-price.purple:hover{box-shadow:0 0 45px rgba(139,92,246,0.7);transform:translateY(-2px)}
.btn-price.cyan-btn{background:linear-gradient(135deg,#0ea5e9,var(--cyan));color:#fff;box-shadow:0 0 25px rgba(34,211,238,0.3)}
.btn-price.cyan-btn:hover{box-shadow:0 0 45px rgba(34,211,238,0.6);transform:translateY(-2px)}

/* CTA */
.cta-section{padding:100px 1.25rem;text-align:center;position:relative;overflow:hidden}
.cta-glow{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:600px;height:400px;border-radius:50%;background:radial-gradient(ellipse,rgba(139,92,246,0.2) 0%,transparent 70%);pointer-events:none}
.cta-section h2{font-size:clamp(1.8rem,5vw,4rem);font-weight:900;color:#fff;line-height:1.1;letter-spacing:-0.03em;margin-bottom:1.25rem;position:relative;z-index:1}
.cta-section h2 span{background:linear-gradient(135deg,var(--purple-light),var(--cyan));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.cta-section p{color:var(--muted);font-size:1rem;margin-bottom:2.5rem;position:relative;z-index:1}
.cta-actions{display:flex;gap:0.875rem;justify-content:center;flex-wrap:wrap;position:relative;z-index:1}

/* FOOTER */
footer{background:var(--surface);border-top:1px solid rgba(255,255,255,0.05);padding:3rem 1.25rem 2rem}
.footer-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2.5rem}
.footer-brand{font-size:1.05rem;font-weight:800;color:#fff;margin-bottom:0.75rem;display:flex;align-items:center;gap:8px}
.footer-brand span{color:var(--cyan)}
.footer-desc{font-size:0.8rem;color:var(--muted2);line-height:1.6}
.footer-col h4{font-size:0.75rem;font-weight:700;color:#fff;text-transform:uppercase;letter-spacing:0.07em;margin-bottom:0.875rem}
.footer-col a{display:block;font-size:0.8rem;color:var(--muted2);text-decoration:none;margin-bottom:0.45rem;transition:color 0.2s}
.footer-col a:hover{color:var(--purple-light)}
.footer-bottom{max-width:1100px;margin:2rem auto 0;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,0.05);display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:0.75rem}
.footer-bottom p{font-size:0.76rem;color:var(--muted2)}

/* SHARED */
.section-label{display:inline-block;font-size:0.7rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;color:var(--purple-light);background:rgba(139,92,246,0.1);border:1px solid rgba(139,92,246,0.25);padding:5px 14px;border-radius:999px;margin-bottom:1.125rem}

/* ════════════════════
   RESPONSIVO
   ════════════════════ */
@media(max-width:1024px){
  .floating-grid{grid-template-columns:repeat(2,1fr)}
  .pricing-grid{grid-template-columns:repeat(2,1fr);max-width:700px}
  .price-card.featured{transform:none}
  .tech-inner{grid-template-columns:1fr;gap:40px;text-align:center}
  .tech-list li{text-align:left;}
  .tech-list {padding-left:20px}
  .footer-inner{grid-template-columns:1fr 1fr;gap:2rem}
  .mockup-body{text-align:left;}
}
@media(max-width:900px){
  .steps{grid-template-columns:repeat(2,1fr)}
  .step-connector{display:none}
}
@media(max-width:768px){
  .hero{padding:100px 1rem 60px}
  .hero-stats{gap:1.5rem;margin-top:2.5rem;padding-top:2rem}
  .stat-num{font-size:1.5rem}
  .cards-section{padding:60px 1rem}
  .floating-grid{grid-template-columns:1fr;gap:1rem;max-width:480px;margin:0 auto}
  .how-section{padding:60px 1rem}
  .steps{grid-template-columns:1fr;max-width:400px;margin-left:auto;margin-right:auto}
  .step{padding:1.5rem 1rem}
  .tech-section{padding:60px 1rem}
  .tech-inner{gap:32px}
  .pricing-section{padding:60px 1rem}
  .cta-section{padding:70px 1rem}
  footer{padding:2.5rem 1rem 1.5rem}
  .footer-inner{grid-template-columns:1fr;gap:1.75rem}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:0.5rem}
}
@media(max-width:600px){
  .hero h1{font-size:clamp(1.8rem,8vw,2.5rem);line-height:1.1}
  .hero-sub{font-size:0.875rem}
  .hero-actions{flex-direction:column;align-items:center;gap:0.75rem}
  .btn-hero-primary,.btn-hero-secondary{width:100%;max-width:320px;justify-content:center;text-align:center}
  .hero-stats{gap:1.25rem}
  .stat-num{font-size:1.35rem}
  .stat-lbl{font-size:0.7rem}
  .cards-section h2{font-size:clamp(1.4rem,6vw,1.8rem)}
  .floating-grid{max-width:100%}
  .f-card{padding:1.375rem}
  .pricing-grid{max-width:100%;grid-template-columns:1fr;max-width:100%}
  .price-card{padding:1.75rem 1.25rem}
  .price-val{font-size:2.25rem}
  .cta-section h2{font-size:clamp(1.6rem,7vw,2.4rem)}
  .cta-actions{flex-direction:column;align-items:center;gap:0.75rem}
  .cta-actions .btn-hero-primary,
  .cta-actions .btn-hero-secondary{width:100%;max-width:320px;justify-content:center;text-align:center}
  .mockup-body{padding:1rem;font-size:0.62rem}
}
@media(max-width:400px){
  .hero{padding:90px 0.875rem 50px}
  .hero-badge{font-size:0.7rem;padding:5px 12px}
  .hero h1{font-size:1.75rem}
  .nav-cta{padding:8px 14px;font-size:0.8rem}
  .f-card{border-radius:14px;padding:1.125rem}
  .f-card-icon{width:44px;height:44px;font-size:1.2rem}
  .step-num{width:46px;height:46px;font-size:0.95rem}
  .price-card{padding:1.5rem 1rem;border-radius:18px}
  .section-label{font-size:0.65rem;padding:4px 10px}
}

/*EDITOR AO VIVO */

/* =======================================================
EDITOR
======================================================= */

.editor-section{
  padding:110px 20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  max-width:1200px;
  margin:auto;
  align-items:center;
}

.editor-left h2{
  margin-top:20px;
  font-size:clamp(2rem,4vw,3.2rem);
  font-weight:800;
  line-height:1.2;
  color:#fff;
}

.editor-left h2 span{
  background:linear-gradient(135deg,var(--purple-light),var(--cyan));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.editor-left p{
  margin-top:22px;
  color:var(--muted);
  line-height:1.9;
  font-size:.95rem;
  max-width:500px;
}

.editor-list{
  margin-top:40px;
  display:grid;
  gap:18px;
}

.editor-item{
  display:flex;
  align-items:center;
  gap:15px;
  font-weight:500;
  color:#dbe4ef;
}

.editor-item i{
  width:45px;
  height:45px;
  border-radius:14px;
  background:rgba(139,92,246,.15);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--cyan);
  font-size:20px;
  border:1px solid rgba(139,92,246,.25);
}

.editor-right{
  display:flex;
  justify-content:center;
}

.editor-image{
  position:relative;
  width:100%;
  max-width:620px;
}

.editor-placeholder{
  aspect-ratio:16/10;
  border-radius:22px;
  border:1px solid rgba(139,92,246,.2);
  background:#090913;
  overflow:hidden;
  box-shadow:0 40px 80px rgba(0,0,0,.45);
  display:flex;
  align-items:center;
  justify-content:center;
}

.editor-placeholder img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.floating-card{
  position:absolute;
  padding:12px 18px;
  border-radius:14px;
  background:rgba(15,15,30,.96);
  backdrop-filter:blur(18px);
  border:1px solid rgba(139,92,246,.25);
  display:flex;
  align-items:center;
  gap:10px;
  font-size:.85rem;
  font-weight:600;
  color:#fff;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  animation:editorFloat 5s ease-in-out infinite;
}

.floating-card i{
  color:var(--cyan);
  font-size:18px;
}

.card-save{
  left:-35px;
  top:40px;
}

.card-mobile{
  right:-35px;
  bottom:60px;
  animation-delay:1.5s;
}

.card-live{
  bottom:-25px;
  left:40px;
  animation-delay:3s;
}

@keyframes editorFloat{
  0%,100%{
    transform:translateY(0px);
  }
  50%{
    transform:translateY(-10px);
  }
}

@media(max-width:992px){

  .editor-section{
    grid-template-columns:1fr;
    gap:60px;
  }

  .editor-left{
    text-align:center;
  }

  .editor-left p{
    margin:auto;
    margin-top:20px;
  }

  .editor-list{
    max-width:450px;
    margin:40px auto 0;
  }

}

@media(max-width:768px){

  .editor-section{
    padding:80px 20px;
  }

  .floating-card{
    font-size:.75rem;
    padding:10px 14px;
  }

  .card-save{
    left:10px;
    top:10px;
  }

  .card-mobile{
    right:10px;
    bottom:20px;
  }

  .card-live{
    left:10px;
    bottom:-15px;
  }

}

@media(max-width:520px){

  .editor-placeholder{
    aspect-ratio:4/3;
  }

  .editor-item{
    align-items:flex-start;
    text-align:left;
  }

  .editor-item i{
    width:40px;
    height:40px;
    font-size:18px;
    flex-shrink:0;
  }

  .floating-card{
    position:relative;
    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
    margin-top:15px;
    width:100%;
    justify-content:center;
    animation:none;
  }

  .editor-image{
    display:flex;
    flex-direction:column;
  }

}

.editor-placeholder video{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  background:#090913;
}

/*CRM */

/*====================================================
CRM
====================================================*/

.crm-section{
  max-width:1200px;
  margin:auto;
  padding:120px 20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.crm-image{
  position:relative;
  max-width:620px;
  margin:auto;
}

.crm-placeholder{
  aspect-ratio:16/10;
  border-radius:22px;
  border:1px solid rgba(139,92,246,.2);
  background:#090913;
  overflow:hidden;
  box-shadow:0 40px 80px rgba(0,0,0,.45);
  display:flex;
  align-items:center;
  justify-content:center;
}

.crm-placeholder img,
.crm-placeholder video{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  background:#090913;
}

.crm-content h2{
  margin:18px 0;
  font-size:clamp(2rem,4vw,3.1rem);
  line-height:1.2;
}

.crm-content h2 span{
  background:linear-gradient(135deg,var(--purple-light),var(--cyan));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.crm-content p{
  color:var(--muted);
  line-height:1.9;
  max-width:520px;
}

.crm-grid{
  margin-top:45px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.crm-card{
  background:var(--surface2);
  border:1px solid rgba(139,92,246,.15);
  border-radius:18px;
  padding:20px;
  display:flex;
  gap:15px;
  transition:.3s;
}

.crm-card:hover{
  transform:translateY(-6px);
  border-color:rgba(139,92,246,.35);
}

.crm-card i{
  width:48px;
  height:48px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(139,92,246,.15);
  color:var(--cyan);
  font-size:22px;
  flex-shrink:0;
}

.crm-card strong{
  display:block;
  color:#fff;
  margin-bottom:6px;
}

.crm-card span{
  color:var(--muted);
  font-size:.88rem;
}

.crm-badge{
  position:absolute;
  background:rgba(15,15,30,.96);
  backdrop-filter:blur(20px);
  border:1px solid rgba(139,92,246,.25);
  border-radius:14px;
  padding:12px 18px;
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-size:.85rem;
  font-weight:600;
  animation:crmFloat 5s ease-in-out infinite;
}

.crm-badge i{
  color:var(--cyan);
}

.badge-1{
  top:35px;
  left:-25px;
}

.badge-2{
  right:-20px;
  top:140px;
  animation-delay:1.5s;
}

.badge-3{
  left:40px;
  bottom:-20px;
  animation-delay:3s;
}

@keyframes crmFloat{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-8px);
  }
}

@media(max-width:992px){

  .crm-section{
    grid-template-columns:1fr;
  }

  .crm-card div{
    text-align: left;
  }

  .crm-content p{
    margin:auto;
    text-align: center;
  }

  .crm-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin: auto;
  }

  .crm-content h2, .crm-content span{
    text-align: center;
    margin: auto;
  }

}

@media(max-width:768px){

  .crm-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:520px){

  .crm-section{
    padding:80px 20px;
  }

  .crm-badge{
    position:relative;
    inset:auto;
    margin-top:15px;
    justify-content:center;
    animation:none;
  }

  .crm-image{
    display:flex;
    flex-direction:column;
  }

}

/*====================================================
CASOS DE USO
====================================================*/

.usecases-section{
  max-width:1200px;
  margin:auto;
  padding:120px 20px;
}

.usecases-header{
  text-align:center;
  max-width:760px;
  margin:auto;
}

.usecases-header h2{
  margin:20px 0;
  font-size:clamp(2rem,4vw,3.2rem);
  font-weight:800;
  line-height:1.15;
}

.usecases-header h2 span{
  background:linear-gradient(135deg,var(--purple-light),var(--cyan));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.usecases-header p{
  color:var(--muted);
  line-height:1.8;
}

/* GRID */

.usecases-grid{
  margin-top:60px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

/* CARD */

.usecase-card{
  position:relative;
  overflow:hidden;
  padding:34px 30px;
  border-radius:24px;
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.015));
  border:1px solid rgba(139,92,246,.15);
  transition:.35s;
}

.usecase-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:linear-gradient(90deg,var(--purple),var(--cyan));
  opacity:.7;
}

.usecase-card:hover{
  transform:translateY(-10px);
  border-color:rgba(139,92,246,.35);
  box-shadow:0 25px 60px rgba(139,92,246,.15);
}

.usecase-icon{
  width:68px;
  height:68px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:22px;
  background:linear-gradient(135deg,rgba(139,92,246,.18),rgba(34,211,238,.08));
  border:1px solid rgba(139,92,246,.25);
}

.usecase-icon i{
  font-size:32px;
  color:var(--cyan);
}

.usecase-card h3{
  color:#fff;
  font-size:1.2rem;
  margin-bottom:12px;
}

.usecase-card p{
  color:var(--muted);
  line-height:1.8;
  font-size:.93rem;
}

/* CTA */

.usecases-bottom{
  margin-top:70px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:28px;
}

.usecases-bottom strong{
  max-width:650px;
  font-size:1.3rem;
  line-height:1.6;
  color:#fff;
}

/* RESPONSIVO */

@media(max-width:992px){

  .usecases-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .usecases-section{
    padding:90px 20px;
  }

  .usecases-grid{
    gap:18px;
  }

}

@media(max-width:560px){

  .usecases-grid{
    grid-template-columns:1fr;
  }

  .usecase-card{
    padding:28px 24px;
  }

  .usecase-icon{
    width:60px;
    height:60px;
  }

  .usecase-icon i{
    font-size:28px;
  }

}

/*====================================================
FAQ
====================================================*/

.faq-section{
  padding:120px 20px;
  max-width:950px;
  margin:auto;
}

.faq-header{
  text-align:center;
  margin-bottom:55px;
}

.faq-header h2{
  margin:18px 0;
  font-size:clamp(2rem,4vw,3.2rem);
  color:#fff;
  line-height:1.15;
}

.faq-header h2 span{
  background:linear-gradient(135deg,var(--purple-light),var(--cyan));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.faq-header p{
  color:var(--muted);
  max-width:650px;
  margin:auto;
  line-height:1.8;
}

.faq-container{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.faq-item{
  background:var(--surface2);
  border:1px solid rgba(255,255,255,.05);
  border-radius:18px;
  overflow:hidden;
  transition:.3s;
}

.faq-item:hover{
  border-color:rgba(139,92,246,.30);
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  color:#fff;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 26px;
  font-size:1rem;
  font-weight:700;
  text-align:left;
}

.faq-question i{
  font-size:24px;
  color:var(--cyan);
  transition:.35s;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faq-answer p{
  padding:0 26px 22px;
  color:var(--muted);
  line-height:1.8;
  font-size:.94rem;
}

.faq-item.active .faq-answer{
  max-height:220px;
}

.faq-item.active .faq-question i{
  transform:rotate(45deg);
}

@media(max-width:768px){

  .faq-section{
    padding:90px 20px;
  }

  .faq-question{
    padding:20px;
    font-size:.95rem;
  }

  .faq-answer p{
    padding:0 20px 20px;
  }

}

/*====================================================
MENU MOBILE (dropdown do hambúrguer)
====================================================*/

@media(max-width:980px){

  .nav-links{
    position:absolute;
    top:85px;
    left:20px;
    right:20px;
    background:rgba(12,12,22,.98);
    border:1px solid rgba(139,92,246,.2);
    border-radius:18px;
    padding:20px;
    display:flex;
    flex-direction:column;
    gap:18px;
    transform:translateY(-20px);
    opacity:0;
    visibility:hidden;
    transition:.35s;
  }

  .nav-links.active{
    transform:translateY(0);
    opacity:1;
    visibility:visible;
  }

  .nav-links a{
    font-size:16px;
  }

  /* Wrapper dos botões só existe visualmente dentro do menu mobile */
  .nav-mobile-actions{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:6px;
  }

  /* Botões usam as MESMAS classes do desktop (.btn-login e .btn-nav),
     só ajustamos para empilhar e centralizar dentro do menu */
  .nav-mobile-actions .btn-login,
  .nav-mobile-actions .btn-nav{
    display:block;
    text-align:center;
    color:#fff;
  }

  .nav-mobile-actions .btn-login {
    border:1px solid rgba(139,92,246,.25);
    border-radius:12px;
  }

}



/* ===== CARROSSEL DE DEMONSTRAÇÃO ===== */
.demo-gallery-section{ padding:6rem 5vw; }

.demo-carousel-wrap{
  position:relative;
  max-width:1200px;
  margin:3rem auto 0;
  display:flex;
  align-items:center;
  gap:1rem;
}

.demo-carousel{
  display:flex;
  gap:1.5rem;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:.5rem;
  flex:1;
  scrollbar-width:none;
}
.demo-carousel::-webkit-scrollbar{ display:none; }

.demo-card{
  position:relative;
  flex:0 0 calc(33.333% - 1rem);
  scroll-snap-align:start;
  border-radius:16px;
  overflow:hidden;
  aspect-ratio:16/10;
  cursor:pointer;
  border:1px solid rgba(255,255,255,.08);
  background:#0b0f19;
}
.demo-card video{
  width:100%;height:100%;object-fit:cover;
  opacity:.7; transition:opacity .3s, transform .3s;
}
.demo-card:hover video{ opacity:1; transform:scale(1.03); }
.demo-overlay{
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:.5rem;
  background:linear-gradient(180deg, transparent 40%, rgba(0,0,0,.75) 100%);
  color:#fff; font-weight:600; font-size:.9rem;
  pointer-events:none;
}
.demo-overlay i{ font-size:2.5rem; opacity:.9; }

.demo-arrow{
  flex:0 0 auto;
  width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#fff; font-size:1.4rem;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition:background .2s, transform .2s;
}
.demo-arrow:hover{ background:rgba(124,58,237,.25); transform:scale(1.08); }
.demo-arrow:disabled{ opacity:.3; cursor:default; pointer-events:none; }

.demo-dots{
  display:flex; justify-content:center; gap:.5rem;
  margin-top:1.5rem;
}
.demo-dot{
  width:8px;height:8px;border-radius:50%;
  background:rgba(255,255,255,.2);
  cursor:pointer; transition:background .2s, transform .2s;
}
.demo-dot.active{ background:#a78bfa; transform:scale(1.3); }

/* Responsivo */
@media (max-width:1024px){
  .demo-card{ flex:0 0 calc(50% - .75rem); }
}
@media (max-width:640px){
  .demo-card{ flex:0 0 85%; }
  .demo-arrow{ display:none; }
}

/* ===== MODAL ===== */
.demo-modal{
  display:none;
  position:fixed; inset:0; z-index:999;
  background:rgba(5,7,15,.92);
  align-items:flex-start;
  justify-content:center;
  padding:7rem 1rem 2rem; /* espaço extra no topo pra não ficar sob a navbar */
}
.demo-modal.active{ display:flex; }

.demo-modal-inner{
  max-width:960px;
  width:100%;
  max-height:calc(90vh - 5rem);
  overflow-y:auto;
  background:#0b0f19;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:2rem;
  position:relative;
  margin-top:1rem;
}
.demo-modal-inner::-webkit-scrollbar{ width:8px; }
.demo-modal-inner::-webkit-scrollbar-thumb{ background:rgba(255,255,255,.15); border-radius:8px; }

.demo-modal-inner h3{ color:#fff; margin:0 0 1.25rem; padding-right:3rem; }
.demo-modal-inner video{ width:100%; border-radius:14px; display:block; }

.demo-modal-details{
  margin-top:1.75rem;
  padding-top:1.75rem;
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--muted, #9ca3af);
  line-height:1.7;
  font-size:.95rem;
}
.demo-modal-details h4{ color:#fff; font-size:1.05rem; font-weight:700; margin:1.25rem 0 .5rem; }
.demo-modal-details h4:first-child{ margin-top:0; }
.demo-modal-details p{ margin-bottom:1rem; }
.demo-modal-details ul{ margin:0 0 1rem 1.1rem; }
.demo-modal-details li{ margin-bottom:.4rem; }

.demo-modal-close{
  position:absolute; top:1.5rem; right:1.5rem;
  background:rgba(255,255,255,.08); border:none; color:#fff;
  width:42px;height:42px;border-radius:50%;
  font-size:1.4rem; cursor:pointer; z-index:2;
}

@media (max-width:640px){
  .demo-modal-inner{ padding:1.25rem; }
}