*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d0d0d;
  --bg2: #0d0d0d;
  --bg3: #141414;
  --purple: #8b31ff;
  --purple-light: #a855f7;
  --purple-dark: #5b0fc8;
  --pink: #ff2d78;
  --pink-light: #ff6fa8;
  --neon-pink: #ff00aa;
  --neon-cyan: #00f5ff;
  --text: #f0f0ff;
  --text-muted: #9090b0;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --glow-purple: 0 0 40px rgba(139, 49, 255, 0.35);
  --glow-pink: 0 0 40px rgba(255, 45, 120, 0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Apple Color Emoji', 'Noto Color Emoji', 'Segoe UI Emoji', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 0;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── BACKGROUND BLOBS ── */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.blob-1 { width: 600px; height: 600px; background: rgba(139, 49, 255, 0.12); top: -200px; left: -200px; }
.blob-2 { width: 500px; height: 500px; background: rgba(255, 45, 120, 0.10); bottom: 10%; right: -150px; animation-delay: 3s; }
.blob-3 { width: 400px; height: 400px; background: rgba(191, 0, 255, 0.08); top: 40%; left: 40%; animation-delay: 6s; }

@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 40px) scale(1.05); }
}

/* ── NAVBAR — in-flow, scrolls away naturally with the page ── */
nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon img {
  width: 34px;
  object-fit: contain;
  display: block;
}
.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.nav-actions { display: flex; align-items: center; gap: 8px; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 3px;
}
.lang-btn {
  padding: 4px 10px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.3px;
}
.lang-btn img {
  width: 13px;
  height: 13px;
  border-radius: 2px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.lang-btn.active {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  box-shadow: 0 2px 10px rgba(139, 49, 255, 0.5);
}

.nav-cta {
  padding: 7px 16px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(139, 49, 255, 0.4);
  letter-spacing: 0.3px;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139, 49, 255, 0.6); }

/* ── SECTIONS ── */
section { position: relative; z-index: 1; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(139, 49, 255, 0.15);
  border: 1px solid rgba(139, 49, 255, 0.4);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-light);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--neon-pink);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-pink);
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.5; }
}

/* ── HERO ── */
#hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px 20px;
}

.hero-content { max-width: 860px; margin: 0 auto; }

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

/* ── SHIMMER LEFT-TO-RIGHT — continuous same-direction loop ── */
#hero-h1-2 {
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--purple-light),
    var(--pink),
    var(--neon-pink),
    var(--purple-light)
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerLTR 5s ease-in-out infinite;
}

@keyframes shimmerLTR {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 200% 50%; }
  100% { background-position: 0%   50%; }
}

/* .gradient-text — same ping-pong shimmer (e.g. "começa agora") */
.gradient-text {
  background: linear-gradient(
    90deg,
    var(--purple-light),
    var(--pink),
    var(--neon-pink),
    var(--purple-light)
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerLTR 5s ease-in-out infinite;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 40px rgba(139, 49, 255, 0.5);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 50px rgba(255, 45, 120, 0.6); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary > span { position: relative; z-index: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }

/* ── ANNOUNCE BAR (fixed top, appears when showcase is in view) ── */
.announce-bar-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  text-align: center;
  padding: 10px 80px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.announce-bar-wrap.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: none;
}
.announce-bar {
  pointer-events: all;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 860px;
  width: 100%;
  background: rgb(167 167 167 / 25%);
  backdrop-filter: saturate(180%) blur(32px);
  -webkit-backdrop-filter: saturate(180%) blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 14px 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 0.5px rgba(139, 49, 255, 0.15);
}
.announce-bar-text {
  font-size: 0.8rem;
  color: rgba(240, 240, 255, 0.85);
  line-height: 1.45;
  text-align: center;
}
.announce-bar-text strong { color: var(--pink-light); font-weight: 700; }

/* CTA inside the announce bar */
.announce-bar .nav-cta {
  display: grid;
  place-items: center;
  width: 75%;
}

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 56px; }

.section-tag {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(255, 45, 120, 0.12);
  border: 1px solid rgba(255, 45, 120, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pink-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── SHOWCASE ── */
#showcase { padding: 60px 0 32px; }

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.showcase-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/16;
  background: var(--bg3);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all 0.35s;
}
.showcase-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(139, 49, 255, 0.5);
  box-shadow: 0 24px 60px rgba(139, 49, 255, 0.3);
}

.showcase-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.showcase-card:nth-child(1) .showcase-img-placeholder { background: linear-gradient(160deg, #1a0d2e, #2d1045, #180824); }
.showcase-card:nth-child(2) .showcase-img-placeholder { background: linear-gradient(160deg, #1f0820, #3d0d38, #1a0420); }
.showcase-card:nth-child(3) .showcase-img-placeholder { background: linear-gradient(160deg, #0d0e2e, #1a1060, #0b0c24); }

.showcase-blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.showcase-card:nth-child(1) .showcase-blur-circle { width: 200px; height: 200px; background: rgba(139,49,255,0.5); top: 20%; left: 20%; }
.showcase-card:nth-child(2) .showcase-blur-circle { width: 200px; height: 200px; background: rgba(255,45,120,0.5); top: 20%; left: 20%; }
.showcase-card:nth-child(3) .showcase-blur-circle { width: 200px; height: 200px; background: rgba(0,245,255,0.3); top: 20%; left: 20%; }

@keyframes charFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-12px) rotate(2deg); }
}
.showcase-card:nth-child(2) .showcase-char { animation-delay: 1.3s; }
.showcase-card:nth-child(3) .showcase-char { animation-delay: 2.6s; }

.showcase-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 16px 20px;
  background: linear-gradient(0deg, rgba(13,13,13,0.95) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.showcase-tag {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(139,49,255,0.3);
  border: 1px solid rgba(139,49,255,0.5);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--purple-light);
  margin-bottom: 6px;
}
.showcase-name { font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.showcase-desc { font-size: 0.75rem; color: var(--text-muted); }

.showcase-lock {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(13,13,13,0.7);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
}
.showcase-card:hover .showcase-lock { opacity: 1; }

/* ── SHOWCASE CTA ── */
.showcase-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ── CTA FINAL ── */
#cta-final { padding: 80px 0; text-align: center; }

.cta-box {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(139,49,255,0.15), rgba(255,45,120,0.08), rgba(13,13,13,0.9));
  border: 1px solid rgba(139,49,255,0.4);
  border-radius: 28px;
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--pink), transparent);
}
.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cta-sub { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 40px; line-height: 1.7; }
.cta-guarantee {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ── FAQ ── */
#faq { padding: 80px 0; }

.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(139,49,255,0.4); }

.faq-question {
  width: 100%;
  background: none; border: none;
  color: var(--text);
  padding: 22px 24px;
  text-align: left;
  font-size: 0.97rem; font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  transition: color 0.3s;
  font-family: 'Inter', sans-serif;
}
.faq-item.open .faq-question { color: var(--purple-light); }

.faq-chevron {
  width: 28px; height: 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 24px; }
.faq-answer p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 40px 24px;
  text-align: center;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  background: linear-gradient(90deg, var(--purple-light), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 12px;
}
.footer-disclaimer { font-size: 0.78rem; color: #555; line-height: 1.6; max-width: 600px; margin: 12px auto 0; }

/* ── LUCIDE ICONS ── */
svg.lucide {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  position: relative;
}
.nav-logo-icon svg.lucide          { width: 20px; height: 20px; stroke-width: 2.2; color: #fff; }
.btn-primary svg.lucide,
.btn-secondary svg.lucide          { width: 17px; height: 17px; stroke-width: 2.5; top: -1px; }
.nav-cta svg.lucide                { width: 14px; height: 14px; stroke-width: 2.5; top: -1px; }
.cta-guarantee svg.lucide          { width: 17px; height: 17px; stroke-width: 2; color: var(--purple-light); }
.announce-bar-text svg.lucide      { width: 14px; height: 14px; stroke-width: 2.5; top: -1px; color: var(--pink-light); }
.faq-chevron svg.lucide            { width: 14px; height: 14px; stroke-width: 2.5; }
.showcase-lock svg.lucide          { width: 22px; height: 22px; stroke-width: 2; color: var(--text); }

/* Showcase video */
.showcase-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: var(--radius);
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .announce-bar-wrap { padding: 10px 24px; }
}
@media (max-width: 768px) {
  .nav-cta { display: none; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }
  .cta-box { padding: 48px 24px; }
  .announce-bar-wrap { padding: 8px 12px; }
  .announce-bar {
    border-radius: 16px;
    padding: 14px 16px;
  }
}
@media (max-width: 480px) {
  .hero-headline { letter-spacing: -0.8px; }
}
