/* ==========================================================
   STUDIO NEED — LANDING PAGE
   Design System v2.0
   Space Grotesk · DM Sans · JetBrains Mono
   ========================================================== */

:root {
  /* Cores */
  --bg-primary: #0A0A0A;
  --bg-secondary: #0E0E0E;
  --bg-tertiary: #141414;
  --bg-card: rgba(255, 255, 255, 0.025);
  --bg-card-hover: rgba(255, 255, 255, 0.04);

  --accent-1: #DAFD4F;
  --accent-2: #94FF19;
  --accent-3: #B8E844;
  --accent-glow: rgba(218, 253, 79, 0.18);

  --text-primary: #FFFFFF;
  --text-secondary: #B8B8B8;
  --text-muted: #6E6E6E;
  --text-faint: #3D3D3D;

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-soft: rgba(255, 255, 255, 0.10);
  --border-accent: rgba(218, 253, 79, 0.35);

  /* Fontes */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Tipografia */
  --text-hero: clamp(2.25rem, 4.6vw, 3.85rem);
  --text-h1: clamp(1.85rem, 3.6vw, 3rem);
  --text-h2: clamp(1.65rem, 3vw, 2.5rem);
  --text-h3: 1.2rem;
  --text-body-lg: 1.0625rem;
  --text-body: 1rem;
  --text-small: 0.875rem;
  --text-xs: 0.72rem;

  /* Espaçamento */
  --space-section: clamp(72px, 10vw, 120px);
  --space-block: clamp(36px, 5vw, 64px);

  /* Gradientes / efeitos */
  --gradient-accent: linear-gradient(135deg, #DAFD4F 0%, #94FF19 100%);
  --gradient-accent-soft: linear-gradient(135deg, rgba(218, 253, 79, 0.9) 0%, rgba(148, 255, 25, 0.9) 100%);
  --gradient-text: linear-gradient(135deg, #DAFD4F 0%, #94FF19 60%, #FFFFFF 200%);
  --gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #0E0E0E 100%);

  --glow-accent: 0 0 32px rgba(218, 253, 79, 0.22), 0 0 80px rgba(148, 255, 25, 0.08);
  --glow-accent-lg: 0 0 60px rgba(218, 253, 79, 0.4), 0 0 140px rgba(148, 255, 25, 0.15);

  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);

  /* Bordas */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.005em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: pointer; color: inherit; font: inherit; }

::selection { background: var(--accent-1); color: #0A0A0A; }

/* ============ OVERLAYS ============ */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--gradient-accent);
  z-index: 1000;
  transition: width 0.05s linear;
  box-shadow: 0 0 12px rgba(218, 253, 79, 0.6);
}

.cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 253, 79, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, transform 0.18s ease-out;
  opacity: 0;
  mix-blend-mode: screen;
  filter: blur(20px);
}

@media (hover: hover) {
  body:hover .cursor-glow { opacity: 1; }
}

/* ============ LAYOUT ============ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

section {
  padding: var(--space-section) 0;
  position: relative;
  z-index: 3;
}

.accent { color: var(--accent-1); }

.accent-grad {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.accent-highlight {
  background: var(--accent-1);
  color: #0A0A0A;
  padding: 0 0.22em;
  font-weight: 700;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  border-radius: 4px;
  white-space: nowrap;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.section-header {
  margin-bottom: var(--space-block);
}

.section-header-center {
  text-align: center;
}
.section-header-center .eyebrow {
  justify-content: center;
}
.section-header-center .eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-1);
}
.section-header-center .section-headline,
.section-header-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-1);
}

.section-headline {
  font-size: var(--text-h2);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  max-width: 820px;
}

.section-sub {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.55;
}

/* ============ BUTTONS ============ */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-accent);
  color: #0A0A0A;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  box-shadow: var(--glow-accent);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #DAFD4F 50%, #94FF19 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-accent-lg);
}
.btn-primary:hover::before { opacity: 1; }

.btn-primary svg { transition: transform 0.3s var(--ease-out); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-large {
  padding: 20px 36px;
  font-size: 1.05rem;
}

/* ============ HERO CTA — pill com seta 45° em círculo ============ */
.btn-hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 6px 6px 26px;
  background: var(--gradient-accent);
  color: #0A0A0A;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 0 0 1px rgba(218, 253, 79, 0.4),
    var(--glow-accent);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  isolation: isolate;
  overflow: hidden;
}
.btn-hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #DAFD4F 60%, #94FF19 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: -1;
  border-radius: inherit;
}
.btn-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(218, 253, 79, 0.55),
    var(--glow-accent-lg);
}
.btn-hero-cta:hover::before { opacity: 1; }
.btn-hero-label { line-height: 1; padding: 6px 0; }
.btn-hero-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #0A0A0A;
  color: var(--accent-1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out), background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.btn-hero-arrow svg { transition: transform 0.4s var(--ease-out); }
.btn-hero-cta:hover .btn-hero-arrow {
  background: #FFFFFF;
  color: #0A0A0A;
}
.btn-hero-cta:hover .btn-hero-arrow svg {
  transform: translateX(2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  letter-spacing: -0.01em;
}

.btn-secondary:hover {
  border-color: var(--border-accent);
  color: var(--accent-1);
  background: rgba(218, 253, 79, 0.04);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #DAFD4F 0%, #94FF19 100%);
  color: #0A0A0A;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px 10px 20px;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  box-shadow: 0 0 0 rgba(218, 253, 79, 0);
}
.btn-nav svg { transition: transform 0.3s var(--ease-out); }
.btn-nav:hover {
  filter: brightness(1.05);
  box-shadow: 0 0 24px rgba(218, 253, 79, 0.45);
  transform: translateY(-1px);
}
.btn-nav:hover svg { transform: translate(2px, -2px); }

/* ============ TAG ============ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(218, 253, 79, 0.07);
  border: 1px solid rgba(218, 253, 79, 0.25);
  color: var(--accent-1);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 8px 16px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-1);
  box-shadow: 0 0 8px var(--accent-1);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  max-width: 1280px;
  z-index: 100;
  background: rgba(14, 14, 14, 0.55);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  transition: top 0.35s var(--ease-out), background 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
  top: 10px;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-img { height: 38px; width: auto; transition: opacity 0.3s; }
.logo:hover .logo-img { opacity: 0.85; }

.nav-menu {
  display: flex;
  gap: 2px;
  align-items: center;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  padding: 3px;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: all 0.25s var(--ease-out);
  font-weight: 500;
  padding: 7px 10px;
  border-radius: 100px;
  position: relative;
}
.nav-num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color 0.25s;
}
.nav-menu a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}
.nav-menu a:hover .nav-num { color: var(--accent-1); }
.nav-menu a.active {
  color: var(--text-primary);
  background: rgba(218, 253, 79, 0.08);
}
.nav-menu a.active .nav-num { color: var(--accent-1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-status i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: pulseDot 1.8s ease-out infinite;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(218, 253, 79, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 253, 79, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 30%, black 35%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 30%, black 35%, transparent 85%);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-left, .hero-glow-right {
  position: absolute;
  width: 50%; height: 60%;
  pointer-events: none;
  z-index: 1;
}
.hero-glow-left {
  left: -10%; top: 20%;
  background: radial-gradient(ellipse, rgba(148, 255, 25, 0.10) 0%, transparent 60%);
  filter: blur(50px);
}
.hero-glow-right {
  right: -15%; bottom: 0;
  background: radial-gradient(ellipse, rgba(218, 253, 79, 0.08) 0%, transparent 60%);
  filter: blur(50px);
}

.hero-need-deco {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  height: 80%;
  width: auto;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

.hero-content { position: relative; z-index: 4; }

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero-sub strong { color: var(--text-primary); font-weight: 500; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  flex-direction: column;
}
.proof-value {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.03em;
}
.proof-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
  line-height: 1.3;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border-subtle);
}

/* ============ HERO VISUAL — MOCKUPS ============ */
.hero-visual {
  position: relative;
  z-index: 4;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ HERO VISUAL — OPERAÇÃO NEED ============ */
.orbit-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(218, 253, 79, 0.18) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
  animation: orbitPulse 6s ease-in-out infinite;
}
@keyframes orbitPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(218, 253, 79, 0.08);
  pointer-events: none;
  z-index: 0;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.orbit-ring-1 {
  width: 520px; height: 520px;
  border-color: rgba(218, 253, 79, 0.12);
  animation: spinSlow 50s linear infinite;
}
.orbit-ring-2 {
  width: 700px; height: 700px;
  border-color: rgba(218, 253, 79, 0.06);
  border-style: dashed;
  animation: spinSlow 80s linear infinite reverse;
}
@keyframes spinSlow { to { transform: translate(-50%, -50%) rotate(360deg); } }

.op-card {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 440px;
  background: linear-gradient(160deg, rgba(20, 20, 20, 0.92) 0%, rgba(12, 12, 12, 0.95) 100%);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 20px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(218, 253, 79, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  animation: floatY 7s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.op-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
}
.op-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.op-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-accent);
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(218, 253, 79, 0.3);
}
.op-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.op-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 3px;
}
.op-live {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--accent-1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.1em;
  background: rgba(218, 253, 79, 0.08);
  padding: 5px 10px;
  border-radius: 100px;
  border: 1px solid rgba(218, 253, 79, 0.2);
}

.op-flow {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
}
.op-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.op-step-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--accent-1);
  background: rgba(218, 253, 79, 0.08);
  border: 1px solid rgba(218, 253, 79, 0.18);
  width: 26px; height: 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-top: 2px;
}
.op-step-body { flex: 1; min-width: 0; }
.op-step-label {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

/* Step 1 — search bar */
.op-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-secondary);
}
.op-search span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
}

/* Step 2 — result */
.op-result {
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(218, 253, 79, 0.06) 0%, rgba(218, 253, 79, 0.02) 100%);
  border: 1px solid rgba(218, 253, 79, 0.25);
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 24px rgba(218, 253, 79, 0.06);
}
.op-result-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--accent-1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(218, 253, 79, 0.12);
  padding: 2px 7px;
  border-radius: 100px;
  margin-bottom: 6px;
  font-weight: 600;
}
.op-result strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 3px;
}
.op-result-url {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Step 3 — lead */
.op-lead {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
}
.op-lead-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.op-lead strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.1;
}
.op-lead span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Connector between steps */
.op-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 0 4px 13px;
  list-style: none;
}
.op-connector-line {
  width: 1px;
  height: 14px;
  background: linear-gradient(180deg, rgba(218, 253, 79, 0) 0%, rgba(218, 253, 79, 0.4) 50%, rgba(218, 253, 79, 0) 100%);
}
.op-connector-arrow {
  color: rgba(218, 253, 79, 0.5);
  margin-top: -3px;
}

/* Footer stats */
.op-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 8px 4px;
  border-top: 1px solid var(--border-subtle);
}
.op-stat { flex: 1; text-align: center; }
.op-stat-divider {
  width: 1px;
  height: 28px;
  background: var(--border-subtle);
}
.op-stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.op-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.op-stat-decimal { font-size: 0.75rem; color: var(--text-secondary); }
.op-stat-trend {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--accent-1);
  margin-top: 3px;
  display: inline-block;
}

/* Floating pills */
.op-pill {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  background: linear-gradient(160deg, rgba(22, 22, 22, 0.98) 0%, rgba(14, 14, 14, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55), 0 0 32px rgba(218, 253, 79, 0.12);
  backdrop-filter: blur(14px);
}
.op-pill-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.op-pill-icon-google {
  background: #fff;
}
.op-pill-icon-trend {
  background: rgba(218, 253, 79, 0.12);
  border: 1px solid rgba(218, 253, 79, 0.3);
  color: var(--accent-1);
}
.op-pill-icon-meta {
  background: #fff;
}
.op-pill-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.op-pill-text strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.op-pill-metric {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-1);
  background: rgba(218, 253, 79, 0.12);
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0;
}
.op-pill-sub {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.op-pill-live {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: pulseDot 1.8s ease-out infinite;
}
.op-pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-1);
  box-shadow: 0 0 10px var(--accent-1);
  animation: pulse 1.5s ease-in-out infinite;
}
.op-pill-top {
  top: 12px;
  right: -20px;
  animation: floatY 6s ease-in-out infinite 1s;
}
.op-pill-bottom {
  bottom: 18px;
  left: -32px;
  animation: floatY 5.5s ease-in-out infinite 0.5s;
}
@media (max-width: 1100px) {
  .op-pill-top { right: -10px; }
  .op-pill-bottom { left: -10px; }
}
@media (max-width: 640px) {
  .hero-visual { min-height: 620px; }
  .op-pill-top { right: 0; top: -10px; }
  .op-pill-bottom { left: 0; bottom: -10px; }
  .orbit-ring-1 { width: 380px; height: 380px; }
  .orbit-ring-2 { width: 520px; height: 520px; }
}

.mockup-card {
  position: absolute;
  background: linear-gradient(160deg, rgba(20, 20, 20, 0.85) 0%, rgba(14, 14, 14, 0.9) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card), 0 0 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mockup-dashboard {
  top: 20px;
  right: 20px;
  width: 92%;
  max-width: 380px;
  padding: 18px;
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mockup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.mockup-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.mockup-live {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--accent-1);
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.08em;
}
.live-dot {
  width: 5px; height: 5px;
  background: var(--accent-1);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.metric-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 12px 14px;
}
.metric-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.metric-big {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: block;
}
.metric-decimal { font-size: 1.1rem; color: var(--text-secondary); }
.metric-trend {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  margin-top: 2px;
  display: inline-block;
}
.metric-trend.up { color: var(--accent-1); }
.metric-trend.down { color: var(--accent-1); }

.chart {
  height: 80px;
  margin-bottom: 14px;
  background: rgba(218, 253, 79, 0.025);
  border-radius: 8px;
  padding: 8px;
}
.chart-svg { width: 100%; height: 100%; }
.chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 2.2s var(--ease-out) 0.5s forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }

.metric-row-bottom {
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 0;
}
.metric-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 6px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
}
.metric-mini span {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.metric-mini strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-1);
  margin-top: 2px;
}

/* Google Search mockup */
.mockup-search {
  bottom: 50px;
  left: 0;
  width: 86%;
  max-width: 340px;
  padding: 14px 16px;
  animation: floatY 7s ease-in-out infinite 1s;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.search-query {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
}
.search-cursor {
  width: 1.5px;
  height: 14px;
  background: var(--accent-1);
  margin-left: 3px;
  animation: blink 1s infinite;
}
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.search-result {
  padding: 10px 12px;
  background: rgba(218, 253, 79, 0.04);
  border: 1px solid rgba(218, 253, 79, 0.2);
  border-radius: 10px;
}
.search-ad-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--accent-1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(218, 253, 79, 0.1);
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 6px;
  font-weight: 600;
}
.search-result-title {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
  line-height: 1.2;
}
.search-result-url {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Floating conversion event */
.mockup-event {
  position: absolute;
  bottom: 0;
  right: 20px;
  background: linear-gradient(160deg, rgba(20, 20, 20, 0.95) 0%, rgba(14, 14, 14, 0.95) 100%);
  border: 1px solid var(--border-accent);
  padding: 10px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 32px rgba(218, 253, 79, 0.15);
  animation: floatY 5s ease-in-out infinite 0.5s;
  backdrop-filter: blur(10px);
}
.event-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mockup-event strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.mockup-event span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  gap: 36px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.marquee-track .dot {
  color: var(--accent-1);
  font-size: 0.45rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ PORTFÓLIO — BENTO ============ */
.section-portfolio {
  background: var(--bg-secondary);
  overflow: hidden;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  overflow: hidden;
  transition: all 0.45s var(--ease-out);
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.bento-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(218, 253, 79, 0.3), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
  z-index: -1;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-soft);
  background: var(--bg-card-hover);
}
.bento-card:hover::after { opacity: 1; }

/* Featured — full-width row 1 com mockup browser */
.bento-featured {
  grid-column: 1 / -1;
  padding: 36px 40px;
  min-height: 280px;
  background: linear-gradient(120deg, rgba(218, 253, 79, 0.05) 0%, var(--bg-tertiary) 55%);
  border-color: var(--border-accent);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.bento-featured-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.bento-featured .bento-title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: 12px;
  letter-spacing: -0.035em;
}
.bento-featured .bento-desc {
  font-size: 0.97rem;
  margin-bottom: 22px;
  max-width: 520px;
}
.bento-featured .bento-top { margin-bottom: 18px; }
.bento-featured .bento-foot { margin-top: auto; }

/* Browser mockup inside featured */
.bento-visual {
  position: relative;
  z-index: 2;
}
.bento-browser {
  background: #0E0E0E;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(218, 253, 79, 0.06);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.6s var(--ease-out);
}
.bento-card:hover .bento-browser {
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) translateY(-4px);
}
.bento-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #161616;
  border-bottom: 1px solid var(--border-subtle);
}
.b-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.bento-url {
  flex: 1;
  margin-left: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 10px;
  border-radius: 100px;
  text-align: center;
  letter-spacing: 0.02em;
}
.bento-screen {
  padding: 16px;
  background: linear-gradient(180deg, #0E0E0E 0%, #131313 100%);
  min-height: 160px;
}
.bento-screen-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.bento-screen-logo {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.bento-screen-menu {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.bento-screen-menu span {
  width: 18px; height: 1.5px;
  background: var(--text-secondary);
}
.bento-screen-hero h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.bento-screen-hero p {
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.bento-screen-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gradient-accent);
  color: #0A0A0A;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: -0.005em;
}

.bento-bg-mesh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 30% 20% at 80% 20%, rgba(218, 253, 79, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 10% 80%, rgba(148, 255, 25, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.bento-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.bento-segment {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent-1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 10px;
  background: rgba(218, 253, 79, 0.08);
  border: 1px solid rgba(218, 253, 79, 0.2);
  border-radius: 100px;
}

.bento-year {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.bento-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.bento-title-md {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.bento-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.bento-featured .bento-desc {
  font-size: 1rem;
  max-width: 580px;
  margin-bottom: 24px;
}

.bento-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.bento-chip {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 5px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.bento-card:hover .bento-chip {
  border-color: rgba(218, 253, 79, 0.2);
}

/* Variantes de fundo nos cards */
.bento-vet {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, var(--bg-card) 50%);
}

.bento-premium {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(218, 253, 79, 0.03) 100%);
}
.bento-premium .bento-glow-corner {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(218, 253, 79, 0.1) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(20px);
}

.bento-franchise {
  background: linear-gradient(140deg, rgba(20, 20, 20, 0.6) 0%, var(--bg-card) 100%);
}

/* ============ PORTFOLIO STATS ============ */
.portfolio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 32px;
  padding: 28px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}
.pf-stat {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid var(--border-subtle);
}
.pf-stat:last-child { border-right: none; }
.pf-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.pf-stat span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============ PORTFOLIO CTA ============ */
.portfolio-cta {
  margin-top: 28px;
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(218, 253, 79, 0.04) 0%, var(--bg-card) 60%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.portfolio-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 1px; width: 40%;
  background: linear-gradient(90deg, var(--accent-1), transparent);
}
.pf-cta-text { flex: 1; }
.pf-cta-text .eyebrow { margin-bottom: 10px; }
.pf-cta-text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.pf-cta-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 580px;
}
.pf-cta-btn {
  flex-shrink: 0;
  gap: 8px;
}

/* ============ CLIENT ROLL (marquee) ============ */
.client-roll {
  margin-top: 64px;
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  position: relative;
}
.client-roll::before, .client-roll::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.client-roll::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-secondary), transparent);
}
.client-roll::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-secondary), transparent);
}
.client-roll-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
}
.client-roll-track .bullet {
  color: var(--accent-1);
  font-size: 0.5rem;
}

/* ============ PROBLEMA — 3 dores X-style ============ */
.problema-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card-pain {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.card-pain::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 90, 90, 0.2), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: -1;
}
.card-pain:hover {
  border-color: rgba(255, 90, 90, 0.25);
  background: rgba(255, 90, 90, 0.02);
  transform: translateY(-4px);
}
.card-pain:hover::after { opacity: 1; }

.pain-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 90, 90, 0.1);
  border: 1px solid rgba(255, 90, 90, 0.18);
  color: #FF5A5A;
  margin-bottom: 24px;
  transition: all 0.3s var(--ease-out);
}
.card-pain:hover .pain-icon {
  background: rgba(255, 90, 90, 0.18);
  transform: rotate(90deg);
}

.card-pain h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.card-pain p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ============ MÉTODO ============ */
.section-metodo {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.metodo-glow {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(218, 253, 79, 0.06) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card-pilar {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.card-pilar:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  background: rgba(218, 253, 79, 0.02);
}

.pilar-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(218, 253, 79, 0.08);
  border: 1px solid rgba(218, 253, 79, 0.2);
  color: var(--accent-1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s var(--ease-out);
}
.card-pilar:hover .pilar-icon {
  background: rgba(218, 253, 79, 0.15);
  transform: scale(1.05);
}

.pilar-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 8px;
}

.card-pilar h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.card-pilar p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.55;
}

/* ============ SERVIÇOS — grid uniforme 3 col ============ */
.servicos-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card-servico {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ============ SERVICO THUMB (top visual) ============ */
.servico-thumb {
  position: relative;
  margin: -30px -26px 22px;
  aspect-ratio: 16 / 9;
  background: linear-gradient(160deg, #161616 0%, #0E0E0E 100%);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-servico:hover .servico-thumb {
  border-bottom-color: rgba(218, 253, 79, 0.2);
}

.thumb-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(218,253,79,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218,253,79,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  opacity: 0.7;
}

/* --- 01 Tráfego Pago --- */
.servico-thumb-trafego { background: radial-gradient(ellipse 70% 60% at 50% 70%, rgba(218,253,79,0.12) 0%, transparent 70%), linear-gradient(160deg, #1A1A1A 0%, #0E0E0E 100%); }
.thumb-trafego-content {
  position: relative; z-index: 2;
  width: 86%;
  display: flex; flex-direction: column; gap: 12px;
}
.thumb-pill {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  padding: 6px 12px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}
.thumb-pill strong {
  font-family: var(--font-display);
  color: var(--accent-1);
  font-weight: 700;
  font-size: 0.78rem;
}
.thumb-pill-dot {
  width: 6px; height: 6px;
  background: var(--accent-1); border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-1);
  animation: pulse 1.5s ease-in-out infinite;
}
.thumb-chart { width: 100%; height: 60px; }

/* --- 02 Landing Pages — mini browser --- */
.servico-thumb-lp { background: linear-gradient(160deg, #181818 0%, #0C0C0C 100%); }
.thumb-browser {
  position: relative; z-index: 2;
  width: 70%; aspect-ratio: 4 / 3;
  background: #0A0A0A;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5), 0 0 30px rgba(218,253,79,0.08);
}
.thumb-browser-bar {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 8px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-subtle);
}
.thumb-browser-bar > span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.thumb-browser-url {
  margin-left: 8px;
  flex: 1;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  color: var(--text-muted);
  text-align: center;
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
  padding: 2px 6px;
  letter-spacing: 0.04em;
}
.thumb-browser-body {
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.thumb-bb-hero {
  height: 22px;
  background: linear-gradient(90deg, rgba(218,253,79,0.18), rgba(218,253,79,0.05));
  border-radius: 3px;
}
.thumb-bb-line {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}
.thumb-bb-line.short { width: 60%; }
.thumb-bb-cta {
  align-self: flex-start;
  margin-top: 4px;
  padding: 4px 8px;
  background: var(--gradient-accent);
  color: #0A0A0A;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.04em;
}

/* --- 03 Identidade Visual --- */
.servico-thumb-identidade { background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(218,253,79,0.1) 0%, transparent 70%), linear-gradient(160deg, #181818 0%, #0C0C0C 100%); }
.thumb-identidade-content {
  position: relative; z-index: 2;
  width: 82%;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.thumb-monogram {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--gradient-accent);
  color: #0A0A0A;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(218,253,79,0.3);
}
.thumb-swatches {
  display: flex; gap: 6px;
}
.thumb-swatches span {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
}
.thumb-typo {
  display: flex; gap: 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.thumb-typo-1 { font-family: var(--font-display); font-weight: 700; }
.thumb-typo-2 { font-family: var(--font-mono); }

/* --- 04 Google Meu Negócio — mapa estilizado --- */
.servico-thumb-gmb {
  background:
    linear-gradient(160deg, #1A1A1A 0%, #0E0E0E 100%);
}
.thumb-map {
  position: absolute; inset: 0;
  background:
    linear-gradient(45deg, transparent 48%, rgba(218,253,79,0.12) 49%, rgba(218,253,79,0.12) 51%, transparent 52%) 0 0 / 60px 60px,
    linear-gradient(-45deg, transparent 48%, rgba(218,253,79,0.06) 49%, rgba(218,253,79,0.06) 51%, transparent 52%) 0 0 / 80px 80px,
    radial-gradient(circle at 30% 40%, rgba(218,253,79,0.06) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.03) 0%, transparent 50%);
}
.thumb-map-pulse {
  position: absolute;
  top: 42%; left: 50%;
  width: 60px; height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218,253,79,0.4) 0%, transparent 70%);
  animation: gmbPulse 2s ease-out infinite;
  z-index: 1;
}
@keyframes gmbPulse {
  0% { transform: scale(0.3); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}
.thumb-map-pin {
  position: absolute;
  top: 42%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  filter: drop-shadow(0 4px 12px rgba(218,253,79,0.4));
  animation: pinBounce 2.5s ease-in-out infinite;
}
@keyframes pinBounce {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, -56%); }
}
.thumb-rating {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; align-items: center; gap: 8px;
  padding: 5px 10px;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.thumb-stars { color: var(--accent-1); font-size: 0.65rem; letter-spacing: 0.05em; }
.thumb-rating-text {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

/* --- 05 Social Media — IG grid --- */
.servico-thumb-social { background: linear-gradient(160deg, #181818 0%, #0C0C0C 100%); }
.thumb-ig-grid {
  position: relative; z-index: 2;
  width: 70%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  aspect-ratio: 3 / 2;
}
.thumb-ig-cell {
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.ig-1 { background: linear-gradient(135deg, #DAFD4F 0%, #94FF19 100%); }
.ig-2 { background: linear-gradient(160deg, #1A1A1A 0%, #0A0A0A 100%); }
.ig-3 { background: linear-gradient(135deg, rgba(218,253,79,0.2) 0%, rgba(218,253,79,0.05) 100%); border-color: rgba(218,253,79,0.3); }
.ig-4 { background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%); }
.ig-5 { background: linear-gradient(135deg, #DAFD4F 0%, #6FBC0A 100%); }
.ig-6 { background: linear-gradient(160deg, #1F1F1F 0%, #0E0E0E 100%); border-color: var(--border-accent); }

/* --- 06 Portal do Cliente --- */
.servico-thumb-portal { background: linear-gradient(160deg, #181818 0%, #0C0C0C 100%); }
.thumb-portal-content {
  position: relative; z-index: 2;
  width: 80%; aspect-ratio: 3 / 2;
  background: #0A0A0A;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 40px 1fr;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.thumb-portal-side {
  background: rgba(255,255,255,0.025);
  border-right: 1px solid var(--border-subtle);
  display: flex; flex-direction: column;
  align-items: center; padding: 8px 0;
  gap: 8px;
}
.thumb-portal-logo {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--gradient-accent);
  color: #0A0A0A;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
}
.thumb-portal-side > span {
  width: 18px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 1px;
}
.thumb-portal-side > span:first-of-type { background: rgba(218,253,79,0.5); }
.thumb-portal-main {
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.thumb-portal-stat span {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.thumb-portal-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 2px;
}
.thumb-portal-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  margin: 2px 0 4px;
}
.thumb-portal-bar i {
  display: block; height: 100%;
  background: var(--gradient-accent);
  border-radius: 2px;
}
.thumb-portal-row {
  display: flex; align-items: center; justify-content: space-between;
}
.thumb-portal-row > span:first-child {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  margin-right: 8px;
}
.thumb-portal-row .ok {
  color: var(--accent-1);
  font-size: 0.6rem;
  font-weight: 700;
}
.thumb-portal-row .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.card-servico:hover {
  border-color: var(--border-soft);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
}

/* Carro-chefe — destacado por gradiente + borda verde */
.card-servico.carrochefe {
  background: linear-gradient(160deg, rgba(218, 253, 79, 0.05) 0%, var(--bg-card) 60%);
  border-color: var(--border-accent);
}
.card-servico.carrochefe:hover {
  border-color: rgba(218, 253, 79, 0.5);
}

.servico-tag-carrochefe {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 5;
  display: inline-flex;
  width: fit-content;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: #0A0A0A;
  background: var(--gradient-accent);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.14em;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(218, 253, 79, 0.3);
}

/* Bonus card — Portal do Cliente */
.card-servico.card-bonus {
  background: linear-gradient(160deg, var(--bg-tertiary) 0%, var(--bg-card) 100%);
  border: 1px dashed rgba(218, 253, 79, 0.25);
}
.card-servico.card-bonus:hover {
  border-style: solid;
  border-color: var(--border-accent);
}
.bonus-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 5;
  display: inline-flex;
  width: fit-content;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--accent-1);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(218, 253, 79, 0.4);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.14em;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.servico-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.servico-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -0.03em;
  line-height: 1;
  transition: color 0.3s;
}
.card-servico.carrochefe .servico-num {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.card-servico:hover .servico-num {
  color: var(--text-secondary);
}

.servico-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(218, 253, 79, 0.06);
  border: 1px solid rgba(218, 253, 79, 0.15);
  color: var(--accent-1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
}
.card-servico:hover .servico-icon {
  background: rgba(218, 253, 79, 0.14);
}

.card-servico h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.servico-impacto {
  color: var(--accent-1);
  font-weight: 500;
  font-size: 0.88rem;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
  letter-spacing: -0.005em;
  line-height: 1.4;
}

.servico-list li {
  position: relative;
  padding: 6px 0 6px 18px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}
.servico-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 8px; height: 1px;
  background: var(--accent-1);
}

.servicos-extra {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ============ PROCESSO ============ */
.section-processo { background: var(--bg-secondary); }

.processo-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}

.processo-step {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  transition: all 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.processo-step:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-faint);
  line-height: 1;
  letter-spacing: -0.04em;
  transition: color 0.3s;
}
.processo-step:hover .step-num {
  color: var(--accent-1);
}

.processo-step h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.processo-step h4 small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-left: 4px;
}

.processo-step p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ============ NÚMEROS ============ */
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  padding: 56px 40px;
  background: linear-gradient(160deg, rgba(218, 253, 79, 0.03) 0%, var(--bg-card) 60%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.numeros-grid::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 50%; height: 1px;
  background: var(--gradient-accent);
  filter: blur(1px);
}

.numero-item {
  text-align: center;
}

.metric-big-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.metric-text {
  font-style: italic;
}

.numero-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.45;
}

.numeros-disclaimer {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 24px;
  letter-spacing: 0.04em;
}

/* ============ SOBRE / EQUIPE ============ */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
  width: 100%;
}

.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.founder-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

.founder-photo {
  position: relative;
  flex: 0 0 38%;
  overflow: hidden;
  background: var(--bg-secondary);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.7s var(--ease-out), filter 0.5s ease;
  filter: grayscale(15%) brightness(0.92) contrast(1.05);
}
.founder-card:hover .founder-photo img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1) contrast(1);
}

.founder-frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.7) 100%);
  pointer-events: none;
}

.founder-status {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 100px;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #eee;
  z-index: 2;
}
.founder-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulseDot 1.8s ease-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.founder-info {
  padding: 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-role {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--accent-1);
  letter-spacing: 0.14em;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.founder-info h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.founder-info > p {
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.55;
  margin-bottom: 12px;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.founder-tags span {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 5px 11px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============ STATEMENT — dark brand break ============ */
.section-statement {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(218, 253, 79, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, #0A0A0A 0%, #111111 100%);
  padding: clamp(80px, 13vw, 140px) 0;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}
.section-statement::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(218, 253, 79, 0.5), transparent);
}
.section-statement::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(218, 253, 79, 0.25), transparent);
}
/* Sutil grid de fundo */
.section-statement {
  background-image:
    linear-gradient(rgba(218,253,79,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218,253,79,0.025) 1px, transparent 1px),
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(218, 253, 79, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, #0A0A0A 0%, #111111 100%);
  background-size: 60px 60px, 60px 60px, auto, auto;
}

.statement-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.statement-mark {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.6;
  color: #94FF19;
  margin-bottom: -10px;
  letter-spacing: -0.05em;
}

.statement-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 1000px;
  margin: 0 auto;
  color: #FFFFFF;
}
.statement-accent {
  background: linear-gradient(135deg, #DAFD4F 0%, #94FF19 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.statement-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.statement-line {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.statement-cite {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 500;
}

/* ============ SERVICE CARD WIDE (Social Media) ============ */
/* (.card-servico-wide / .servico-list-grid removidos — agora todos os cards de serviço usam o mesmo layout 3-col uniforme) */

/* ============ CTA FINAL — split layout com form ============ */
.section-cta-final {
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}

.cta-glow-bg {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(218, 253, 79, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(148, 255, 25, 0.06) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}

.cta-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-left { position: relative; }

.cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-1);
  letter-spacing: 0.14em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-weight: 500;
  padding: 8px 16px;
  background: rgba(218, 253, 79, 0.08);
  border: 1px solid rgba(218, 253, 79, 0.3);
  border-radius: 100px;
}
.cta-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--accent-1);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-1);
  animation: pulse 2s ease-in-out infinite;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 540px;
}

.cta-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.cta-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cta-checklist .check {
  background: var(--gradient-accent);
  color: #0A0A0A;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 0 16px rgba(218, 253, 79, 0.2);
}
.cta-checklist strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.015em;
  margin-bottom: 3px;
}
.cta-checklist span {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.45;
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}
.cta-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-weight: 500;
}
.dot-trust {
  width: 5px; height: 5px;
  background: var(--accent-1);
  border-radius: 50%;
}

/* ----- FORM ----- */
.cta-form {
  position: relative;
  background: linear-gradient(160deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(218, 253, 79, 0.06);
}
.cta-form::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 2px;
  background: var(--gradient-accent);
  filter: blur(1px);
}

.form-head {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}
.form-head h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.form-head p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-field label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.form-field label span {
  color: var(--accent-1);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.94rem;
  transition: all 0.25s var(--ease-out);
  font-weight: 400;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-faint);
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--border-soft);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--border-accent);
  background: rgba(218, 253, 79, 0.02);
  box-shadow: 0 0 0 4px rgba(218, 253, 79, 0.08);
}
.form-field input.invalid,
.form-field select.invalid {
  border-color: rgba(255, 80, 80, 0.5);
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23DAFD4F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-field select option {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
  font-family: var(--font-body);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 18px 28px;
  font-size: 1rem;
}

.form-disclaimer {
  margin-top: 14px;
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0A0A;
  box-shadow: var(--glow-accent);
}
.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}
.form-success p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ============ FAQ ============ */
.faq-container { max-width: 880px; }
.faq-container .section-header { text-align: center; align-items: center; }
.faq-container .section-header .eyebrow { margin-left: auto; margin-right: auto; }
.faq-container .section-header .section-sub { margin-left: auto; margin-right: auto; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}
.faq-item[open] {
  border-color: var(--border-accent);
  background: rgba(218, 253, 79, 0.02);
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.015em;
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--accent-1); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-1);
  font-weight: 400;
  transition: transform 0.4s var(--ease-out);
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] .faq-plus { transform: rotate(45deg); }

.faq-content {
  padding: 0 24px 22px;
  animation: fadeDown 0.4s var(--ease-out);
}
.faq-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
  position: relative;
  z-index: 3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo { height: 56px; margin-bottom: 24px; width: auto; }

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 10px;
  max-width: 280px;
}

.footer-location {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-muted) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}

.footer-col ul li { padding: 5px 0; }
.footer-col ul li a, .footer-col ul li {
  color: var(--text-secondary);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent-1); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin: 0;
}
.footer-legal { display: flex; flex-direction: column; gap: 4px; }
.footer-cnpj { color: var(--text-secondary) !important; }
.footer-tag {
  font-family: var(--font-display) !important;
  font-style: italic;
  color: var(--text-secondary) !important;
  letter-spacing: -0.01em !important;
  font-size: 0.82rem !important;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform 0.3s var(--ease-spring);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  z-index: -1;
  animation: ripple 2.5s ease-out infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger por seção */
.problema-grid .card-problema.visible:nth-child(1) { transition-delay: 0ms; }
.problema-grid .card-problema.visible:nth-child(2) { transition-delay: 80ms; }
.problema-grid .card-problema.visible:nth-child(3) { transition-delay: 160ms; }
.problema-grid .card-problema.visible:nth-child(4) { transition-delay: 240ms; }
.problema-grid .card-problema.visible:nth-child(5) { transition-delay: 320ms; }

.pilares-grid .card-pilar.visible:nth-child(1) { transition-delay: 0ms; }
.pilares-grid .card-pilar.visible:nth-child(2) { transition-delay: 100ms; }
.pilares-grid .card-pilar.visible:nth-child(3) { transition-delay: 200ms; }
.pilares-grid .card-pilar.visible:nth-child(4) { transition-delay: 300ms; }

.servicos-layout .card-servico.visible:nth-child(1) { transition-delay: 0ms; }
.servicos-layout .card-servico.visible:nth-child(2) { transition-delay: 100ms; }
.servicos-layout .card-servico.visible:nth-child(3) { transition-delay: 200ms; }
.servicos-layout .card-servico.visible:nth-child(4) { transition-delay: 300ms; }

.processo-timeline .processo-step.visible:nth-child(1) { transition-delay: 0ms; }
.processo-timeline .processo-step.visible:nth-child(2) { transition-delay: 60ms; }
.processo-timeline .processo-step.visible:nth-child(3) { transition-delay: 120ms; }
.processo-timeline .processo-step.visible:nth-child(4) { transition-delay: 180ms; }
.processo-timeline .processo-step.visible:nth-child(5) { transition-delay: 240ms; }
.processo-timeline .processo-step.visible:nth-child(6) { transition-delay: 300ms; }
.processo-timeline .processo-step.visible:nth-child(7) { transition-delay: 360ms; }
.processo-timeline .processo-step.visible:nth-child(8) { transition-delay: 420ms; }

.faq-list .faq-item.visible:nth-child(n+1) { transition-delay: calc(60ms * var(--i, 0)); }

.hero-content > .reveal.visible:nth-child(1) { transition-delay: 0ms; }
.hero-content > .reveal.visible:nth-child(2) { transition-delay: 100ms; }
.hero-content > .reveal.visible:nth-child(3) { transition-delay: 200ms; }
.hero-content > .reveal.visible:nth-child(4) { transition-delay: 300ms; }
.hero-content > .reveal.visible:nth-child(5) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .whatsapp-float::before, .mockup-dashboard, .mockup-search, .mockup-event,
  .tag-dot, .marquee-track, .live-dot, .search-cursor, .cta-eyebrow-dot,
  .client-roll-track { animation: none !important; }
  .chart-line { stroke-dashoffset: 0; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { min-height: 560px; max-width: 480px; margin: 0 auto; }

  .servicos-layout {
    grid-template-columns: 1fr 1fr;
  }

  .cta-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bento-featured { grid-template-columns: 1fr; min-height: auto; padding: 32px 28px; }
  .bento-visual { max-width: 380px; margin: 0 auto; }

  .estrutura-side-label { display: none; }
  .estr-connectors { display: none; }
  .estr-level-2, .estr-level-3, .estr-level-4 { gap: 16px; }
  .estr-level-4 { flex-wrap: wrap; }

  .depoimentos-grid { grid-template-columns: 1fr 1fr; }

  .problema-grid-3 { grid-template-columns: 1fr; }

  .processo-timeline { grid-template-columns: repeat(2, 1fr); }

  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-featured { grid-column: 1 / 3; grid-row: auto; min-height: 360px; }
  .bento-monogram { font-size: 5.5rem; }

  .portfolio-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .pf-stat { border-right: none; border-bottom: 1px solid var(--border-subtle); padding-bottom: 16px; }
  .pf-stat:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }

  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 968px) {
  .nav-status { display: none; }
}

@media (max-width: 768px) {
  .site-header { top: 10px; width: calc(100% - 20px); border-radius: 22px; }
  .nav-container { padding: 8px 8px 8px 18px; }
  .nav-menu, .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .nav-menu.open {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(20px);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  }
  .nav-menu.open a { width: 100%; padding: 12px 14px; }
  .nav-menu.open li { border-bottom: 1px solid var(--border-subtle); }
  .nav-menu.open li:last-child { border-bottom: none; }

  .hero { padding-top: 110px; min-height: auto; }

  .hero-headline { font-size: clamp(2.2rem, 8vw, 3.2rem); }

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { width: 100%; }

  .hero-proof { gap: 16px; }
  .proof-divider { display: none; }
  .proof-value { font-size: 1.5rem; }

  .hero-visual { min-height: 620px; max-width: 100%; }
  .op-card { max-width: 100%; }

  .marquee-track { font-size: 0.75rem; gap: 24px; }

  .servicos-layout { grid-template-columns: 1fr; }

  .processo-timeline { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .cta-form { padding: 28px 22px; }

  .depoimentos-grid { grid-template-columns: 1fr; }
  .estr-level-4 { grid-template-columns: 1fr 1fr; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-featured { grid-column: 1; min-height: 320px; padding: 30px 26px; }
  .bento-monogram { font-size: 4.5rem; }
  .bento-title { font-size: 1.6rem; }

  .portfolio-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 20px;
  }
  .pf-cta-btn { width: 100%; }

  .client-roll-track { font-size: 0.9rem; gap: 22px; }

  .founders-grid { grid-template-columns: 1fr; max-width: 480px; }
  .founder-card { flex-direction: row; }
  .founder-photo { flex: 0 0 42%; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-box { padding: 36px 22px; }
  .cta-bullets { width: 100%; }
}

@media (max-width: 480px) {
  section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .numero-item p { font-size: 0.85rem; }
  .numeros-grid { padding: 40px 20px; gap: 24px; }
  .founder-card { flex-direction: column; }
  .founder-photo { flex: 0 0 auto; aspect-ratio: 4 / 3; }
  .founder-info { padding: 18px; }
  .founder-info h3 { font-size: 1.25rem; }
  .logo-chip { padding: 14px 12px; font-size: 0.8rem; }
}

/* ============ ESTRUTURA DE SUCESSO ============ */
.section-estrutura {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.estrutura-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(218, 253, 79, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 253, 79, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}

.estrutura-diagram {
  position: relative;
  padding: 64px 32px 56px;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  min-height: 600px;
}

.estrutura-side-label {
  position: absolute;
  left: -8px;
  top: 50%;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: left top;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  white-space: nowrap;
}

.estr-connectors {
  position: absolute;
  inset: 64px 32px 56px 32px;
  width: calc(100% - 64px);
  height: calc(100% - 120px);
  pointer-events: none;
  z-index: 1;
}

.estr-level {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-bottom: 36px;
}
.estr-level-1 { margin-bottom: 50px; }
.estr-level-2 { margin-bottom: 50px; }
.estr-level-3 { margin-bottom: 50px; }
.estr-level-4 { margin-bottom: 0; gap: 16px; }

.estr-node {
  background: linear-gradient(160deg, rgba(20, 20, 20, 0.9) 0%, rgba(14, 14, 14, 0.9) 100%);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 14px 22px;
  transition: all 0.3s var(--ease-out);
  backdrop-filter: blur(10px);
}

.estr-node-you {
  width: 96px;
  height: 96px;
  background: linear-gradient(160deg, #1A1A1A 0%, #0A0A0A 100%);
  border: 2px solid var(--accent-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  padding: 0;
  box-shadow: 0 0 32px rgba(218, 253, 79, 0.25);
  animation: pulseRing 3s ease-in-out infinite;
}
@keyframes pulseRing {
  0%, 100% { box-shadow: 0 0 32px rgba(218, 253, 79, 0.25); }
  50% { box-shadow: 0 0 48px rgba(218, 253, 79, 0.4), 0 0 80px rgba(148, 255, 25, 0.15); }
}

.estr-node-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
}
.channel-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.channel-wa { background: rgba(37, 211, 102, 0.1); border: 1px solid rgba(37, 211, 102, 0.25); }
.channel-portal { background: rgba(218, 253, 79, 0.1); border: 1px solid rgba(218, 253, 79, 0.25); color: var(--accent-1); }

.estr-node-portal {
  border: 1px solid rgba(218, 253, 79, 0.35);
  background: linear-gradient(160deg, rgba(218, 253, 79, 0.05) 0%, rgba(14, 14, 14, 0.9) 100%);
}

.channel-info { display: flex; flex-direction: column; gap: 2px; }
.channel-info strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}
.channel-info span {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.estr-node-founder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 230px;
}
.founder-tag-est {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--accent-1);
  background: rgba(218, 253, 79, 0.08);
  border: 1px solid rgba(218, 253, 79, 0.2);
  padding: 3px 8px;
  border-radius: 100px;
  font-weight: 500;
  margin-bottom: 6px;
}
.estr-node-founder strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}
.estr-node-founder small {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.estr-node-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  min-width: 150px;
}
.spec-tag {
  width: 30px;
  height: 30px;
  background: var(--gradient-accent);
  color: #0A0A0A;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.estr-node-spec strong {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}

.estr-node:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

/* ============ DEPOIMENTOS ============ */
.section-depoimentos {
  background: var(--bg-secondary);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.depoimento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.depoimento-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.depo-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-tertiary);
  overflow: hidden;
}

.depo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(218, 253, 79, 0.04) 0%, rgba(0, 0, 0, 0.3) 100%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.015) 0 2px, transparent 2px 14px);
}

.depo-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(218, 253, 79, 0.25), 0 0 0 0 rgba(218, 253, 79, 0.3);
  transition: all 0.3s var(--ease-out);
  padding-left: 4px;
}
.depo-play:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(218, 253, 79, 0.4), 0 0 0 8px rgba(218, 253, 79, 0.1);
}

.depo-soon {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--accent-1);
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(218, 253, 79, 0.25);
  padding: 5px 10px;
  border-radius: 100px;
  font-weight: 500;
  backdrop-filter: blur(6px);
}

.depo-info {
  padding: 22px 24px 26px;
}
.depo-segment {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--accent-1);
  letter-spacing: 0.14em;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 8px;
}
.depo-info h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.depo-info p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-style: italic;
}

.depoimentos-disclaimer {
  margin-top: 36px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.depoimentos-disclaimer a {
  color: var(--accent-1);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.depoimentos-disclaimer a:hover { border-bottom-color: var(--accent-1); }

/* Reduced motion for new sections */
@media (prefers-reduced-motion: reduce) {
  .estr-node-you { animation: none !important; }
  .depo-play { transition: none !important; }
}

/* ============ GARANTIAS — 3 compromissos com selo ============ */
.section-garantias {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.garantias-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(218, 253, 79, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.garantias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.card-garantia {
  position: relative;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-tertiary) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
}

.card-garantia::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-1), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

.card-garantia::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(218, 253, 79, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}

.card-garantia:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
}
.card-garantia:hover::before { opacity: 1; }
.card-garantia:hover::after { opacity: 1; }

/* Selo no canto superior direito */
.garantia-seal {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--accent-1);
  opacity: 0.3;
  transition: opacity 0.6s var(--ease-out), transform 0.8s var(--ease-out);
}
.garantia-seal svg {
  animation: sealRotate 30s linear infinite;
  animation-play-state: paused;
}
.card-garantia:hover .garantia-seal {
  opacity: 1;
  transform: scale(1.08);
}
.card-garantia:hover .garantia-seal svg {
  animation-play-state: running;
}
@keyframes sealRotate {
  to { transform: rotate(360deg); }
}

/* Número grande */
.garantia-num {
  display: block;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 0.9;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

/* Linha animada de "verificado" */
.garantia-line {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 22px;
}
.garantia-line-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 100px;
  transition: width 1.2s var(--ease-out);
  box-shadow: 0 0 8px rgba(218, 253, 79, 0.4);
}
.card-garantia.visible .garantia-line-fill {
  width: 100%;
}

.garantia-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.garantia-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.garantia-desc strong {
  color: var(--text-primary);
  font-weight: 600;
}

.garantia-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--accent-1);
  background: rgba(218, 253, 79, 0.06);
  border: 1px solid rgba(218, 253, 79, 0.18);
  padding: 7px 12px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: all 0.3s var(--ease-out);
}
.card-garantia:hover .garantia-tag {
  background: rgba(218, 253, 79, 0.1);
  border-color: rgba(218, 253, 79, 0.35);
}

/* Assinatura no rodapé */
.garantias-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  padding: 28px 24px;
  background: linear-gradient(180deg, transparent 0%, var(--bg-tertiary) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.signature-line {
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}
.signature-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.signature-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  font-weight: 500;
}
.signature-names {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.signature-role {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Stagger reveal nos cards garantia */
.garantias-grid .card-garantia.visible:nth-child(1) { transition-delay: 0ms; }
.garantias-grid .card-garantia.visible:nth-child(2) { transition-delay: 120ms; }
.garantias-grid .card-garantia.visible:nth-child(3) { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .garantia-seal svg { animation: none !important; }
  .garantia-line-fill { transition: none; }
}

/* Responsive */
@media (max-width: 1024px) {
  .garantias-grid { grid-template-columns: 1fr; gap: 16px; }
  .garantias-signature { gap: 16px; }
  .signature-line { max-width: 80px; }
}

@media (max-width: 480px) {
  .card-garantia { padding: 28px 24px; }
  .garantia-num { font-size: 3.5rem; }
  .garantia-seal { top: 16px; right: 16px; }
  .garantia-seal svg { width: 36px; height: 36px; }
  .signature-names { font-size: 1.2rem; }
}
