/* ══════════════════════════════════════════════════════════════
   FRACTAL SYNC — Landing Page
   Design System: Quiet Luxury / Dark Mode
   ══════════════════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --bg:        #0A0D12;
  --surface:   #0E1116;
  --hover:     #1B2230;
  --border-1:  #1C2333;
  --border-2:  #242B36;
  --text-head: #E6EAF0;
  --text-body: #9AA4B2;
  --text-mute: #5A6478;
  --green:     #2FBF71;
  --green-dim: rgba(47, 191, 113, 0.12);
  --purple:    #a78bfa;
  --purple-dim:rgba(167, 139, 250, 0.12);
  --blue:      #60a5fa;
  --blue-dim:  rgba(96, 165, 250, 0.12);
  --green-glow:rgba(47, 191, 113, 0.25);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text-body);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ══════════════════════════════════════════════════════════════
   TYPOGRAPHY SCALE
   ══════════════════════════════════════════════════════════════ */
.section-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-head);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.section-sub {
  font-size: 18px;
  color: var(--text-body);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 60px;
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: #000;
  background: var(--green);
  padding: 14px 28px;
  border-radius: 100px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 0 30px rgba(47,191,113,0.3), 0 4px 16px rgba(0,0,0,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(47,191,113,0.45), 0 8px 30px rgba(0,0,0,0.5);
  background: #3fd67e;
}
.btn-primary.btn-large {
  font-size: 17px;
  padding: 18px 36px;
  gap: 12px;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-head);
  background: transparent;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid var(--border-2);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--text-mute);
  background: var(--hover);
}
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.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; }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(10, 13, 18, 0);
  border-bottom: 1px solid rgba(28, 35, 51, 0);
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  backdrop-filter: blur(0px);
}
.navbar.scrolled {
  background: rgba(10, 13, 18, 0.85);
  border-bottom-color: var(--border-1);
  backdrop-filter: blur(20px);
}
.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syncopate', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--text-head);
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--green); }

/* 👇 adiciona aqui tamanho da logo */
.nav-logo-img {
  height: 52px;      /* 👈 ajusta o tamanho */
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s;
}
.nav-links li a:hover { color: var(--text-head); }
.nav-cta {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--green) !important;
  border: 1px solid rgba(47,191,113,0.3);
  padding: 8px 20px;
  border-radius: 100px;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: rgba(47,191,113,0.1);
  box-shadow: 0 0 20px rgba(47,191,113,0.2);
}
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text-body); transition: all 0.3s; }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 80px;
  overflow: hidden;
  text-align: center;
}

/* Mesh gradient background */
.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(167,139,250,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(96,165,250,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(47,191,113,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-purple {
  width: 500px; height: 500px;
  background: rgba(167,139,250,0.08);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}
.orb-green {
  width: 350px; height: 350px;
  background: rgba(47,191,113,0.07);
  bottom: 10%; right: 5%;
  animation-delay: -4s;
}
.orb-blue {
  width: 300px; height: 300px;
  background: rgba(96,165,250,0.07);
  bottom: 20%; left: 5%;
  animation-delay: -8s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-body);
  background: rgba(28,35,51,0.6);
  border: 1px solid var(--border-2);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 36px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--green); }
  50%       { opacity: 0.6; box-shadow: 0 0 4px var(--green); }
}

/* ── Hero: logo as main title ── */
.hero-logo-title {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(48px, 9vw, 110px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-head);
  line-height: 1.0;
  margin-bottom: 20px;
}
.hero-slogan {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.3;
}
.hero-slogan-accent {
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(44px, 7.5vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text-head);
  margin-bottom: 28px;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* ── Hero: subtítulo "Sincronize áudio e vídeo..." ── */
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}


.stat-label {
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 2px;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-1);
}

/* App screenshot mockup */
.hero-app-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 64px auto 0;
}
.app-glow {
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(ellipse 70% 40% at 50% 110%, rgba(47,191,113,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 30% at 50% -10%, rgba(167,139,250,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.app-screenshot-frame {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
}
.app-bar {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: rgba(10,13,18,0.8);
  border-bottom: 1px solid var(--border-1);
  gap: 12px;
}
.app-dots { display: flex; gap: 6px; }
.app-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-2);
}
.app-dots span:nth-child(1) { background: #ff5f57; }
.app-dots span:nth-child(2) { background: #ffbd2e; }
.app-dots span:nth-child(3) { background: #28ca41; }
.app-title-bar {
  font-family: 'Syncopate', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-body);
  flex: 1;
  text-align: center;
  letter-spacing: 0.1em;
}
.app-pro-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  background: var(--green);
  color: #000;
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.app-tracks { padding: 20px 20px 12px; display: flex; flex-direction: column; gap: 8px; }
.track-row { display: flex; align-items: center; gap: 12px; }
.track-row-master { margin-top: 4px; }
.track-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  width: 40px;
  text-align: right;
  flex-shrink: 0;
}
.track {
  flex: 1;
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.track-cam3 { background: rgba(234,179,8,0.08); }
.track-cam2 { background: rgba(34,197,94,0.08); }
.track-cam1 { background: rgba(96,165,250,0.08); }
.track-master { background: rgba(167,139,250,0.08); }
.track-clip {
  height: 26px;
  border-radius: 4px;
  flex-shrink: 0;
}
.track-cam3 .track-clip { background: rgba(234,179,8,0.7); }
.track-cam2 .track-clip { background: rgba(34,197,94,0.7); }
.track-cam1 .track-clip { background: rgba(96,165,250,0.7); }
.track-master .track-clip { background: rgba(167,139,250,0.7); height: 30px; }
.app-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 16px;
  border-top: 1px solid var(--border-1);
  gap: 12px;
}
.app-export-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  background: var(--hover);
  border: 1px solid var(--border-2);
  padding: 7px 14px;
  border-radius: 6px;
}
.app-done {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  background: var(--green);
  color: #000;
  padding: 8px 24px;
  border-radius: 8px;
  flex: 1;
  text-align: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: scrollHint 2.5s ease-in-out infinite;
}
.hero-scroll-hint span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-mute), transparent);
}
@keyframes scrollHint {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════════════════════════
   SOCIAL PROOF STRIP
   ══════════════════════════════════════════════════════════════ */
.social-proof {
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  padding: 28px 32px;
  background: var(--surface);
}
.sp-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  text-align: center;
}
.sp-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  white-space: nowrap;
}
.sp-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.sp-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mute);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.sp-logo:hover { color: var(--text-body); }
.sp-sep { color: var(--border-2); font-size: 12px; }

/* ══════════════════════════════════════════════════════════════
   PROBLEM / SOLUTION
   ══════════════════════════════════════════════════════════════ */
.problem {
  padding: 120px 32px;
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.problem .section-title { margin-bottom: 64px; }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
}

.problem-card {
  background: var(--surface);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: left;
}
.problem-before { border-color: rgba(255,75,75,0.15); }
.problem-after  { border-color: rgba(47,191,113,0.2); background: rgba(47,191,113,0.03); }

.pcard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.pcard-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.before-icon { background: rgba(255,75,75,0.1); color: #ff6b6b; }
.after-icon  { background: var(--green-dim); color: var(--green); }
.pcard-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-head);
}

.pcard-list { display: flex; flex-direction: column; gap: 12px; }
.pcard-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}
.pcard-icon-bad { color: #ff6b6b; font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.pcard-icon-good { color: var(--green); font-size: 13px; margin-top: 2px; flex-shrink: 0; }

.pcard-time {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-1);
}
.pcard-time-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ff6b6b;
  letter-spacing: -0.02em;
}
.pcard-time-good .pcard-time-num { color: var(--green); }
.pcard-time-label { font-size: 12px; color: var(--text-mute); }

.problem-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.vs-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--hover);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mute);
  flex-shrink: 0;
  z-index: 1;
}
.vs-line { display: none; }

/* ══════════════════════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════════════════════ */
.features {
  padding: 120px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-inner > .section-sub { margin-bottom: 64px; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.feature-card-wide { grid-column: 1 / -1; }

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-2);
}
.feature-card-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.fcard-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  top: -100px; right: -100px;
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover .fcard-glow { opacity: 1; }
.fcard-glow-purple { background: rgba(167,139,250,0.12); }
.fcard-glow-green  { background: rgba(47,191,113,0.12); }
.fcard-glow-blue   { background: rgba(96,165,250,0.12); }

.fcard-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 12px;
}
.fcard-title {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-head);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.fcard-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 24px;
}
.fcard-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(239, 233, 233, 0.882);
  background: linear-gradient(
    135deg,
    lab(14.16% 13.81 -17.83 / 0.741) 0%,
    rgba(167, 139, 250, 0.22) 100%
  );
  border: 1px solid rgba(167, 139, 250, 0.40);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.fcard-icon-large {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  background: var(--hover);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

/* Wave animation in engine card */
.engine-visual {
  height: 80px;
  position: relative;
}
/* ── Macbook image — Fractal Engine card ── */
.engine-macbook-img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 145%;
  width: auto;
  max-width: 82%;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 38%,
    rgba(0,0,0,0.35) 42%,
    rgba(0,0,0,1) 70%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 38%,
    rgba(0,0,0,0.35) 52%,
    rgba(0,0,0,1) 70%
  );
  opacity: 0.35;
}

/* garante que o título e as tags ficam acima da imagem */
.feature-card-wide .fcard-title,
.feature-card-wide .fcard-tags {
  position: relative;
  z-index: 1;
}

.wave-lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 12px;
  position: relative;
}
.wave-line {
  height: 4px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.wl-purple { background: linear-gradient(90deg, transparent, var(--purple), transparent); width: 100%; animation: waveScan 3s ease-in-out infinite; }
.wl-green  { background: linear-gradient(90deg, transparent, var(--green), transparent);  width: 100%; animation: waveScan 3s ease-in-out infinite; }
.wl-blue   { background: linear-gradient(90deg, transparent, var(--blue), transparent);   width: 100%; animation: waveScan 3s ease-in-out infinite; }
@keyframes waveScan {
  0%   { background-position: -100% 0; opacity: 0.4; }
  50%  { opacity: 1; }
  100% { background-position: 200% 0; opacity: 0.4; }
}
.wave-sync-indicator {
  position: absolute;
  left: 50%;
  top: -4px;
  bottom: -4px;
  width: 2px;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: syncPulse 3s ease-in-out infinite;
  border-radius: 1px;
}
@keyframes syncPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* Camera dots */
.fcard-cameras {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.cam-dot {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.cam-1 { background: rgba(96,165,250,0.15); color: var(--blue); border: 1px solid rgba(96,165,250,0.2); }
.cam-2 { background: rgba(34,197,94,0.15);  color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
.cam-3 { background: rgba(234,179,8,0.15);  color: #facc15; border: 1px solid rgba(234,179,8,0.2); }
.cam-4 { background: rgba(248,113,113,0.15);color: #f87171; border: 1px solid rgba(248,113,113,0.2); }
.cam-5 { background: rgba(167,139,250,0.15);color: var(--purple); border: 1px solid rgba(167,139,250,0.2); }

/* ══════════════════════════════════════════════════════════════
   WORKFLOW
   ══════════════════════════════════════════════════════════════ */
.workflow {
  padding: 120px 32px;
}
.workflow-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 64px;
}
.ws-step {
  background: var(--surface);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.ws-step:hover {
  transform: translateY(-4px);
  border-color: var(--border-2);
}
.ws-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--border-2);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.ws-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-head);
  margin-bottom: 10px;
}
.ws-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
}
.ws-arrow { display: none; }

/* ══════════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════════ */
.pricing {
  padding: 120px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border-1);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.pricing-inner > .section-sub { margin: 0 auto 64px; text-align: center; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
}
.pricing-card-featured {
  border-color: var(--green);
  background: rgba(47,191,113,0.04);
  box-shadow: 0 0 60px rgba(47,191,113,0.1);
  transform: scale(1.03);
}
.pricing-card-featured:hover { transform: scale(1.03) translateY(-4px); }

.pc-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--green);
  color: #000;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pc-plan {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 20px;
}
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.pc-currency {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-body);
  margin-top: 4px;
}
.pc-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--text-head);
  line-height: 1;
  letter-spacing: -0.04em;
}
.pc-period {
  font-size: 13px;
  color: var(--text-mute);
  margin-left: 4px;
}
.pc-desc {
  font-size: 14px;
  color: var(--text-mute);
  margin-bottom: 28px;
  line-height: 1.6;
  min-height: 42px;
}
.pc-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-1);
}
.pc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.5;
}
.pc-check { color: var(--green); flex-shrink: 0; font-size: 13px; margin-top: 2px; }
.pc-x { color: var(--text-mute); flex-shrink: 0; font-size: 13px; margin-top: 2px; }

.pricing-note {
  margin-top: 40px;
  font-size: 13px;
  color: var(--text-mute);
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   CTA FINAL
   ══════════════════════════════════════════════════════════════ */
.cta-final {
  position: relative;
  padding: 160px 32px;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border-1);
}
.cta-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(47,191,113,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(167,139,250,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(96,165,250,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.cta-orb-1 { width: 600px; height: 600px; background: rgba(47,191,113,0.05); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.cta-orb-2 { width: 300px; height: 300px; background: rgba(167,139,250,0.05); top: 30%; right: 10%; }
.cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: var(--text-head);
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 24px;
}
.cta-sub {
  font-size: 18px;
  color: var(--text-body);
  margin-bottom: 48px;
  line-height: 1.6;
}
.cta-fine {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-mute);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border-1);
  padding: 64px 32px 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Syncopate', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-head);
  display: block;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.7;
}
.footer-links-group {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13px;
  color: var(--text-body);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--text-head); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border-1);
  font-size: 12px;
  color: var(--text-mute);
  flex-wrap: wrap;
  gap: 12px;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 100px 24px 80px; }
  .hero-stats { gap: 12px; padding: 16px 20px; }
  .stat { padding: 0 16px; }
  .stat-num { font-size: 22px; }

  .problem-grid { grid-template-columns: 1fr; gap: 16px; }
  .problem-vs { flex-direction: row; padding: 0; }
  .vs-circle { width: 40px; height: 40px; font-size: 11px; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card-wide { grid-column: 1; }
  .feature-card-wide { grid-template-columns: 1fr; gap: 24px; }
  .engine-macbook-img { display: none; }

  .workflow-steps { grid-template-columns: 1fr; gap: 16px; }
  .ws-arrow { display: none; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-card-featured { transform: scale(1); }
  .pricing-card-featured:hover { transform: translateY(-4px); }

  .social-proof { padding: 24px; }
  .sp-inner { gap: 16px; }

  section { padding: 80px 24px; }
  .problem { padding: 80px 24px; }
  .features { padding: 80px 24px; }
  .workflow { padding: 80px 24px; }
  .pricing { padding: 80px 24px; }
  .cta-final { padding: 100px 24px; }

  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links-group { gap: 40px; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 38px; }
  .section-title { font-size: 28px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .app-tracks { padding: 12px; }
  .track-label { display: none; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════════════════════════════
   RECURSOS DE ALTA FUSÃO
   ══════════════════════════════════════════════════════════════ */
.recursos {
  padding: 120px 32px 80px;
  overflow: hidden;
}
.recursos-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.recursos-header {
  margin-bottom: 60px;
}
.recursos-title {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-head);
  line-height: 1.05;
  text-transform: uppercase;
}
.recursos-title-accent {
  color: var(--green);
}

/* Grid: 4 cards equal columns */
.recursos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Base card */
.rcard {
  background: var(--surface);
  border: 1px solid var(--border-1);
  padding: 20px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: pointer;
  position: relative;
  transition: border-color 0.35s ease;
  overflow: hidden;
}
.rcard::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.rcard-cam3::before { background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(245,158,11,0.12) 0%, transparent 70%); }
.rcard-cam2::before { background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(47,191,113,0.12) 0%, transparent 70%); }
.rcard-cam1::before { background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(96,165,250,0.12) 0%, transparent 70%); }
.rcard-master::before { background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(167,139,250,0.12) 0%, transparent 70%); }

.rcard:hover::before { opacity: 1; }
.rcard-cam3:hover  { border-color: rgba(245,158,11,0.3); }
.rcard-cam2:hover  { border-color: rgba(47,191,113,0.3); }
.rcard-cam1:hover  { border-color: rgba(96,165,250,0.3); }
.rcard-master:hover { border-color: rgba(167,139,250,0.3); }

/* Top row */
.rcard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.rcard-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rcard-cam-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
}
.cam3-badge   { background: rgba(245,158,11,0.2);  color: #f59e0b; }
.cam2-badge   { background: rgba(47,191,113,0.2);  color: var(--green); }
.cam1-badge   { background: rgba(96,165,250,0.2);  color: var(--blue); }
.master-badge { background: rgba(167,139,250,0.2); color: var(--purple); }

.rcard-meta-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.rcard-arrow {
  font-size: 16px;
  color: var(--text-mute);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--hover);
  border: 1px solid var(--border-1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.rcard:hover .rcard-arrow {
  background: var(--hover);
  color: var(--text-head);
  transform: rotate(0deg) scale(1.1);
}
.rcard-cam3:hover .rcard-arrow  { color: #f59e0b; border-color: rgba(245,158,11,0.3); }
.rcard-cam2:hover .rcard-arrow  { color: var(--green); border-color: rgba(47,191,113,0.3); }
.rcard-cam1:hover .rcard-arrow  { color: var(--blue); border-color: rgba(96,165,250,0.3); }
.rcard-master:hover .rcard-arrow { color: var(--purple); border-color: rgba(167,139,250,0.3); }

.rcard-sub-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Waveform canvas area */
.rcard-waveform {
  height: 60px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.wf-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Bottom info */
.rcard-bottom { position: relative; z-index: 1; }
.rcard-icon-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-head);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1.2;
}
.rcard-cam3 .rcard-icon-label svg  { stroke: #f59e0b; }
.rcard-cam2 .rcard-icon-label svg  { stroke: var(--green); }
.rcard-cam1 .rcard-icon-label svg  { stroke: var(--blue); }
.rcard-master .rcard-icon-label svg { stroke: var(--purple); }

.rcard-type-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.rcard-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-body);
}

/* Responsive recursos */
@media (max-width: 900px) {
  .recursos-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .recursos-title { font-size: clamp(30px, 7vw, 56px); }
}
@media (max-width: 560px) {
  .recursos-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   WIDGET: CORTE INTELIGENTE
   ══════════════════════════════════════════════════════════════ */
.corte-inteligente-container { padding: 120px 32px; background: var(--bg); display: flex; justify-content: center; }
.ci-inner { 
  max-width: 680px; 
  width: 100%; 
  margin: 0 auto; 
}
.outer { padding: 2rem 0; width: 100%; color: var(--text-body); }
.badge-exclusive { display: inline-flex; align-items: center; gap: 8px; background: #0f1f14; border: 1px solid var(--green); color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .12em; padding: 6px 16px; border-radius: 100px; margin-bottom: 20px; text-transform: uppercase; }

.headline { font-size: clamp(22px, 4vw, 34px); font-weight: 800; color: var(--text-head); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 10px; }
.headline span { color: var(--green); }
.sub { font-size: 14px; color: var(--text-body); line-height: 1.6; margin-bottom: 28px; max-width: 560px; }
.competitors { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; align-items: center; }
.comp-label { font-size: 11px; color: var(--text-body); letter-spacing: .08em; text-transform: uppercase; margin-right: 4px; }
.comp-pill { font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 100px; background: var(--surface); border: 1px solid var(--border-2); color: var(--text-body); position: relative; }
.comp-pill::after { content: '✕'; color: #E24B4A; margin-left: 5px; font-size: 10px; }
.modal-wrap { background: #0d1117; border: 1px solid var(--border-2); border-radius: 16px; overflow: hidden; max-width: 680px; }
.modal-bar { display: flex; align-items: center; gap: 12px; padding: 14px 20px; border-bottom: 1px solid var(--border-1); background: var(--bg); }
.modal-davinci { font-family: 'Space Grotesk', system-ui; font-size: 10px; font-weight: 700; background: var(--green); color: #000; padding: 4px 10px; border-radius: 5px; letter-spacing: .06em; }
.modal-title { font-family: 'Inter', system-ui; font-size: 14px; font-weight: 700; color: var(--text-head); letter-spacing: .05em; flex: 1; }
.modal-close { font-size: 18px; color: var(--text-mute); cursor: pointer; line-height: 1; padding: 4px 6px; border-radius: 4px; border: none; background: none; }
.modal-close:hover { color: var(--text-head); }
.stats-row { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; padding: 16px 20px; gap: 12px; border-bottom: 1px solid var(--border-1); }
.stat-block { display: flex; flex-direction: column; gap: 3px; }
.stat-label { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute); font-family: 'Space Grotesk', system-ui; font-weight: 600; }
.stat-val { font-size: 20px; font-weight: 700; letter-spacing: -.02em; font-family: 'Space Grotesk', system-ui; color: var(--text-head); }
.stat-val.green { color: var(--green); }
.stat-val.red { color: #f87171; }
.stat-arrow { color: var(--text-mute); font-size: 18px; }
.timeline-wrap { padding: 16px 20px; position: relative; }
.tl-track { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; height: 26px; }
.tl-lbl { font-size: 9px; font-weight: 700; letter-spacing: .08em; color: var(--text-mute); font-family: 'Space Grotesk', system-ui; width: 44px; text-align: right; flex-shrink: 0; }
.tl-bar { flex: 1; background: var(--bg); border-radius: 4px; height: 100%; position: relative; overflow: hidden; }
.clip { position: absolute; top: 2px; height: calc(100% - 4px); border-radius: 3px; cursor: pointer; transition: opacity .2s; }
.clip:hover { opacity: .85; }
.tl-timecodes { display: flex; justify-content: space-between; padding: 6px 0 0 54px; }
.tl-timecodes span { font-size: 8px; color: var(--text-mute); font-family: 'Space Grotesk', system-ui; }
.scrubber { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--text-head); pointer-events: none; z-index: 10; opacity: 0; transition: opacity .2s; }
.scrubber::before { content: '▼'; position: absolute; top: -8px; left: 50%; transform: translateX(-50%); font-size: 8px; color: var(--text-head); }
.slider-section { padding: 12px 20px 16px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border-1); }
.margin-label { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); font-family: 'Space Grotesk', system-ui; }
.margin-ctrl { display: flex; align-items: center; gap: 8px; }
.ctrl-btn { width: 28px; height: 28px; border-radius: 6px; background: var(--bg); border: 1px solid var(--border-2); color: var(--text-body); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; font-family: monospace; }
.ctrl-btn:hover { background: var(--hover); }
.ctrl-val { font-family: 'Space Grotesk', system-ui; font-size: 14px; font-weight: 700; color: var(--text-head); min-width: 32px; text-align: center; }
.modal-footer { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-top: 1px solid var(--border-1); gap: 12px; }
.btn-export { font-family: 'Space Grotesk', system-ui; font-size: 12px; font-weight: 600; padding: 9px 18px; border-radius: 8px; border: 1px solid var(--border-2); background: transparent; color: var(--text-body); cursor: pointer; transition: background .2s; }
.btn-export:hover { background: var(--hover); color: var(--text-head); }
.btn-apply { font-family: 'Space Grotesk', system-ui; font-size: 12px; font-weight: 700; padding: 9px 20px; border-radius: 8px; border: none; background: var(--green); color: #000; cursor: pointer; flex: 1; transition: transform .1s, box-shadow .2s; }
.btn-apply:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(47, 191, 113, .3); }
.btn-apply:active { transform: scale(.98); }
.done-overlay { display: none; position: absolute; inset: 0; background: rgba(10, 13, 18, .92); border-radius: 12px; align-items: center; justify-content: center; flex-direction: column; gap: 12px; z-index: 20; }
.done-check { font-size: 48px; animation: pop .4s cubic-bezier(.34, 1.56, .64, 1); }
@keyframes pop { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.done-text { font-family: 'Space Grotesk', system-ui; font-size: 14px; font-weight: 700; color: var(--green); letter-spacing: .04em; }
.done-sub { font-size: 12px; color: var(--text-body); text-align: center; }
.progress-bar { width: 100%; height: 3px; background: var(--border-1); border-radius: 2px; margin-top: 8px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--green); border-radius: 2px; width: 0; transition: width .05s linear; }
.ai-scanning { position: absolute; inset: 0; background: rgba(10, 13, 18, .7); border-radius: 0; align-items: center; justify-content: center; flex-direction: column; gap: 10px; display: none; z-index: 10; }
.ai-text { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--green); font-family: 'Space Grotesk', system-ui; font-weight: 600; }
.scan-line { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--green), transparent); animation: scan 1.4s ease-in-out infinite; }
@keyframes scan { 0% { top: 0; opacity: 1; } 100% { top: 100%; opacity: .2; } }


/* Ajuste do Título Hero para NUNCA quebrar a linha */
.hero-logo-title {
  white-space: nowrap !important;
  font-size: clamp(28px, 6vw, 72px) !important;
}

/* Ajuste específico para telemóveis para não sair do ecrã */
@media (max-width: 600px) {
  .hero-logo-title {
    font-size: clamp(20px, 8vw, 32px) !important;
  }
}


/* Ajustes de tipografia do Hero (Slogan e Subtexto) */
.hero-slogan-accent {
  display: block; /* Força "Multiplique a criação." a saltar para a linha de baixo */
  margin-top: 4px; /* Dá um respiro elegante entre as duas frases */
}

.hero-sub {
  font-size: clamp(13px, 1.3vw, 15px) !important; /* Reduz significativamente o tamanho da fonte */
  line-height: 1.6 !important;
  font-weight: 400 !important;
  max-width: 760px !important; /* Evita que o texto fique demasiado largo num ecrã grande */
  margin-left: auto !important;
  margin-right: auto !important;
  color: #9AA4B2 !important; /* Usa uma cor ligeiramente mais suave para não competir com o título */
}

/* ── Hotmart CSS override — isola os estilos deles ao elemento fantasma ── */
a.hotmart-fb.hotmart__button-checkout {
  all: unset !important;
  display: none !important;
}

/* ── Neutraliza efeitos visuais do CSS Hotmart nos botões visíveis ── */
.pricing-card button.btn-primary,
.pricing-card button.btn-ghost {
  box-shadow: 0 0 30px rgba(47,191,113,0.3), 0 4px 16px rgba(0,0,0,0.4) !important;
  border: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  background-image: none !important;
}

.pricing-card button.btn-primary:hover {
  box-shadow: 0 0 50px rgba(47,191,113,0.45), 0 8px 30px rgba(0,0,0,0.5) !important;
}

.pricing-card button.btn-ghost {
  box-shadow: none !important;
  border: 1px solid var(--border-2) !important;
}

.pricing-card button.btn-ghost:hover {
  box-shadow: none !important;
  border-color: var(--text-mute) !important;
}

/* ── Hotmart FancyBox popup — bordas arredondadas ── */
.fancybox-slide--iframe .fancybox-content {
  border-radius: 20px !important;
  overflow: visible !important;
  padding: 0 !important;
}

.fancybox-slide--iframe .fancybox-content iframe {
  border-radius: 20px !important;
  display: block !important;
}

.fancybox-slide {
  padding: 60px 110px !important;
}

.fancybox-slide--iframe .fancybox-content {
  border-radius: 20px !important;
  overflow: visible !important;
  padding: 0 !important;
  width: 760px !important;
  max-width: 90vw !important;
  height: 85vh !important;
  max-height: 85vh !important;
}

.fancybox-slide--iframe .fancybox-content iframe {
  border-radius: 20px !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.fancybox-bg {
  background: #0A0D12 !important;
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9 !important;
  backdrop-filter: blur(12px) !important;
}

/* Botão fechar — separado e centrado */
button.fancybox-close-small {
  position: absolute !important;
  top: -28px !important;
  right: -28px !important;
  width: 36px !important;
  height: 36px !important;
  background: transparent !important;
  border-radius: 50% !important;
  border: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 99999 !important;
  color: #9AA4B2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
}

button.fancybox-close-small:hover {
  background: transparent !important;
  color: #E6EAF0 !important;
}

button.fancybox-close-small svg {
  width: 16px !important;
  height: 16px !important;
  display: block !important;
  margin: auto !important;
}