/* ============================================================
   UNIQUE — v8 (refined from v4)
   Light Theme · Verde Menta · DM Sans · Fitas Diagonais
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #E8E6E1;
  --bg-alt: #EFEDE8;
  --bg-card: #FFFFFF;
  --ink: #0A0A0A;
  --ink-soft: #1A1A1A;
  --ink-muted: #6E6E6E;
  --ink-faded: #A8A6A1;
  --green: #2BFB9A;
  --green-bright: #00FF8C;
  --green-dim: #1FD680;
  --green-soft: rgba(43, 251, 154, 0.18);
  --border: rgba(10, 10, 10, 0.08);
  --border-mid: rgba(10, 10, 10, 0.16);
  --border-strong: rgba(10, 10, 10, 0.28);

  --font-display: 'DM Sans', system-ui, sans-serif;
  --font-serif: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1400px;
  --gutter: 32px;
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-pill: 100px;

  --section-y: clamp(72px, 9vw, 128px);
  --section-y-sm: clamp(48px, 6vw, 80px);
  --section-gap-head: clamp(32px, 4vw, 56px);

  --e-out: cubic-bezier(0.16, 1, 0.3, 1);
  --e-back: cubic-bezier(0.34, 1.4, 0.64, 1);
  --e-spring: cubic-bezier(0.5, 1.6, 0.4, 1);
}

/* ============================================================
   SEÇÃO BASE — Ritmo vertical único e consistente
   ============================================================ */
section { padding: var(--section-y) 0; position: relative; }
section.tight { padding: var(--section-y-sm) 0; }
section.flush { padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 120px; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

/* IDs alvo - margin pra compensar nav-ticker + nav fixo */
section[id] { scroll-margin-top: 100px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

@media (max-width: 968px) { body { font-size: 16px; } }

::selection { background: var(--green); color: var(--ink); }

a { color: inherit; text-decoration: none; transition: color 0.3s var(--e-out); }
img { max-width: 100%; height: auto; display: block; }
button { background: none; border: none; font: inherit; color: inherit; cursor: pointer; }

/* Grão sutil */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--ink);
  z-index: 9999;
  width: 0;
  transition: width 0.1s linear;
}

/* ============================================================
   INTRO V5 — CINEMATOGRÁFICA PURA
   Palavras conceito alternando + glow + vinheta + light leak diagonal
   ============================================================ */
.intro {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  color: var(--bg);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 56px);
  overflow: hidden;
}

/* Vinheta escura nas bordas (sensação cinematográfica) */
.intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Glow verde central pulsando — sutil e cinematográfico */
.intro-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  max-width: 1400px;
  max-height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(43, 251, 154, 0.18) 0%, transparent 55%);
  filter: blur(80px);
  opacity: 0;
  z-index: 1;
  animation: introGlowIn 2s var(--e-out) 0.2s forwards;
  pointer-events: none;
}

@keyframes introGlowIn {
  to { opacity: 1; }
}

/* Light leak diagonal — faixa de luz cinematográfica */
.intro-vline {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 140vh;
  background: linear-gradient(105deg, transparent 40%, rgba(43, 251, 154, 0.08) 50%, transparent 60%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: introLeakIn 1.5s var(--e-out) 0.4s forwards;
}

@keyframes introLeakIn {
  to { opacity: 1; }
}

/* CURTAIN SPLIT — verde fecha pelo centro, depois abre pros lados */
.intro-curtain-l, .intro-curtain-r {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--green);
  z-index: 10;
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
}

.intro-curtain-l { left: 0; transform: translateX(-100%); }
.intro-curtain-r { right: 0; transform: translateX(100%); }

.intro.curtain-in .intro-curtain-l { transform: translateX(0); }
.intro.curtain-in .intro-curtain-r { transform: translateX(0); }

.intro.curtain-out .intro-curtain-l { transform: translateX(-100%); }
.intro.curtain-out .intro-curtain-r { transform: translateX(100%); }

.intro.done {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--e-out) 0.8s;
}

/* TOPO: timecode minimal */
.intro-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: translateY(-10px);
  animation: introFadeDown 0.7s var(--e-out) 0.3s forwards;
  z-index: 3;
  position: relative;
}

.intro-top span { display: inline-flex; align-items: center; gap: 10px; }

.intro-top .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
  animation: pulse 1.5s ease-in-out infinite;
}

.intro-top .mark { color: var(--green); opacity: 0.7; }

@keyframes introFadeDown {
  to { opacity: 1; transform: translateY(0); }
}

/* STAGE: palavras alternando no centro */
.intro-stage {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.intro-word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  color: var(--bg);
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.92) translateY(30px);
  filter: blur(20px);
  text-align: center;
  padding: 0 4vw;
}

.intro-word.accent {
  font-style: italic;
  color: var(--green);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.intro-word.final {
  font-size: clamp(96px, 17vw, 260px);
  letter-spacing: -0.065em;
}

.intro-word.final .dot {
  color: var(--green);
  text-shadow: 0 0 40px rgba(43, 251, 154, 0.9);
}

/* Animação cycle */
@keyframes wordCycle {
  0% { opacity: 0; transform: scale(0.92) translateY(30px); filter: blur(20px); }
  18% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
  82% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
  100% { opacity: 0; transform: scale(1.05) translateY(-30px); filter: blur(20px); }
}

@keyframes wordFinal {
  0% { opacity: 0; transform: scale(0.85); filter: blur(30px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

.intro-word:nth-child(1) { animation: wordCycle 0.7s cubic-bezier(0.65, 0, 0.35, 1) 0.6s forwards; }
.intro-word:nth-child(2) { animation: wordCycle 0.7s cubic-bezier(0.65, 0, 0.35, 1) 1.1s forwards; }
.intro-word:nth-child(3) { animation: wordCycle 0.7s cubic-bezier(0.65, 0, 0.35, 1) 1.6s forwards; }
.intro-word:nth-child(4) { animation: wordCycle 0.7s cubic-bezier(0.65, 0, 0.35, 1) 2.1s forwards; }
.intro-word:nth-child(5) { animation: wordCycle 0.7s cubic-bezier(0.65, 0, 0.35, 1) 2.6s forwards; }
.intro-word:nth-child(6) { animation: wordFinal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 3.1s forwards; }

/* BOTTOM: vazio (sem tagline) - mantém espaço pra balancear */
.intro-bottom {
  height: 24px;
  z-index: 3;
  position: relative;
}

body.intro-active { overflow: hidden; height: 100vh; }

@media (max-width: 768px) {
  .intro-top { font-size: 9px; }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--green-dim);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.display-1 {
  font-size: clamp(54px, 8.5vw, 132px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.048em;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.eyebrow.dark { color: var(--bg); }

.green-pill {
  background: var(--green);
  padding: 0 12px;
  border-radius: 8px;
  display: inline-block;
  line-height: 1.1;
  color: var(--ink);
}

.muted { color: var(--ink-muted); }
.green-text { color: var(--green-dim); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }

@media (max-width: 768px) { :root { --gutter: 20px; } section { padding: 64px 0; } }

/* ============================================================
   NAV TICKER — Motion impactante no topo
   ============================================================ */
.nav-ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  z-index: 102;
  display: flex;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.6s var(--e-out);
}

body.start .nav-ticker { transform: translateY(0); }

.nav-ticker.hide {
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  will-change: transform;
}

.nav-ticker:hover .nav-ticker-track { animation-play-state: paused; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.nav-ticker-item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-ticker-item .accent { color: var(--green); font-weight: 600; }
.nav-ticker-item .sep { color: var(--green); opacity: 0.6; }

.nav-ticker-item::after {
  content: '';
  color: var(--green);
  margin-left: 32px;
  opacity: 0.5;
  font-size: 13px;
}

@media (max-width: 768px) {
  .nav-ticker { height: 32px; }
  .nav-ticker-item { font-size: 10px; padding: 0 20px; }
}

/* ============================================================
   NAV — V12 IMPACT (top: 36px abaixo do ticker)
   ============================================================ */
.nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: top 0.5s var(--e-out), padding 0.5s var(--e-out), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.9s var(--e-out);
  transform: translateY(-200%);
  background: rgba(232, 230, 225, 0.72);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--border);
}

body.start .nav { transform: translateY(0); transition-delay: 0.1s; }

.nav.ready { transform: translateY(0); }

.nav.scrolled {
  top: 0;
  z-index: 103;
  background: rgba(232, 230, 225, 0.92);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  padding: 12px 0;
  border-bottom-color: var(--border-mid);
  box-shadow: 0 1px 28px rgba(10, 10, 10, 0.05);
}

@media (max-width: 768px) {
  .nav { top: 32px; }
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand block (logo + asterisco) */
.brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  transition: opacity 0.3s var(--e-out);
  line-height: 1.15;
  padding: 2px 0;
}

.brand:hover { opacity: 0.6; }
.brand-dot { color: var(--green-dim); margin-left: 1px; }

/* Separador vertical */
.nav-divider {
  width: 1px;
  height: 28px;
  background: var(--border-mid);
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links li { position: relative; }

.nav-links a {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  padding: 8px 2px;
  display: inline-block;
  transition: color 0.3s var(--e-out);
  letter-spacing: -0.005em;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green-dim);
  transition: width 0.5s var(--e-out);
}

.nav-links a:hover { color: var(--green-dim); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { background: var(--ink); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px 11px 14px;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid var(--ink);
  transition: all 0.4s var(--e-out);
  white-space: nowrap;
  letter-spacing: -0.005em;
  position: relative;
  animation: ctaBreathe 3.2s ease-in-out infinite;
}

@keyframes ctaBreathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43, 251, 154, 0); }
  50% { box-shadow: 0 0 0 6px rgba(43, 251, 154, 0.18); }
}

.nav-cta:hover {
  background: var(--green);
  color: var(--ink);
  border-color: var(--green);
  transform: translateY(-1px);
}

.nav-cta-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(43, 251, 154, 0.55);
}

.nav-cta:hover .nav-cta-dot { background: var(--ink); box-shadow: none; }

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

.mobile-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; }
.mobile-toggle span { width: 22px; height: 1.5px; background: var(--ink); position: relative; }
.mobile-toggle span::before, .mobile-toggle span::after {
  content: ''; position: absolute; width: 22px; height: 1.5px; background: var(--ink); left: 0;
}
.mobile-toggle span::before { top: -7px; }
.mobile-toggle span::after { top: 7px; }

@media (max-width: 968px) {
  .nav-center, .nav-cta, .nav-divider { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 24px var(--gutter);
    gap: 8px;
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
  }
  .nav-links.open a { padding: 12px 16px; }
}

/* ============================================================
   HERO — V15 IMPACTO
   Headline gigante centrada + selo flutuante + 360° fantasma + orbital ambient
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--section-y) + 60px) var(--gutter) var(--section-y);
  position: relative;
  overflow: hidden;
  text-align: left;
}

/* "360°" fantasma gigante no canto inferior direito */
.hero-ghost {
  position: absolute;
  bottom: -8%;
  right: -3%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(280px, 42vw, 720px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 1.8s var(--e-out) 1.6s;
}

body.start .hero-ghost { opacity: 0.06; }

/* Selo flutuante no canto superior direito */
.hero-badge {
  position: absolute;
  top: clamp(120px, 16vh, 180px);
  right: clamp(24px, 4vw, 64px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 3;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 1s var(--e-out) 0.8s, transform 1s var(--e-out) 0.8s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

body.start .hero-badge { opacity: 1; transform: translateY(0); }

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero-badge .count {
  color: var(--green);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
  .hero-badge { font-size: 9px; padding: 8px 14px 8px 10px; top: 100px; }
}

/* Conteúdo principal */
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0;
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 4.5vw, 64px);
}

.hero h1 { margin: 0; max-width: 100%; }

.headline-wrap {
  display: block;
  overflow: hidden;
  padding: 0.06em 0;
}

.headline-line {
  display: block;
  transform: translateY(110%);
  transition: transform 1.1s var(--e-out);
  white-space: nowrap;
}

/* Mobile: permite quebra natural e reduz font-size pra não cortar */
@media (max-width: 640px) {
  .display-1 {
    font-size: clamp(38px, 11vw, 56px);
    letter-spacing: -0.035em;
    line-height: 1.02;
  }
  .headline-line { white-space: normal; }
}

body.start .headline-line { transform: translateY(0); }
body.start .headline-line:nth-child(1) { transition-delay: 0.4s; }
body.start .headline-line:nth-child(2) { transition-delay: 0.52s; }
body.start .headline-line:nth-child(3) { transition-delay: 0.64s; }

.hero-lower {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px, 4vw, 80px);
  align-items: end;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--e-out) 1.1s, transform 1s var(--e-out) 1.1s;
}

body.start .hero-lower { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .hero-lower { grid-template-columns: 1fr; gap: 24px; align-items: start; }
}

.hero-lede {
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 580px;
}

.hero-lede .em { color: var(--ink); font-weight: 500; }
.hero-lede .em-green { color: var(--green-dim); font-style: italic; font-weight: 500; }

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-cta-secondary {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-mid);
  transition: color 0.3s var(--e-out), border-color 0.3s var(--e-out);
}

.hero-cta-secondary:hover {
  color: var(--ink);
  border-bottom-color: var(--green);
}

.hero-cta-secondary svg { width: 14px; height: 14px; }

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 1s var(--e-out) 1.8s;
  z-index: 3;
}

body.start .scroll-indicator { opacity: 1; }

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: var(--border-mid);
  position: relative;
  overflow: hidden;
}

.scroll-indicator-line::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--ink);
  animation: scrollIndicator 2s ease-in-out infinite;
}

@keyframes scrollIndicator {
  0% { transform: translateY(0); }
  100% { transform: translateY(50px); }
}

@media (max-width: 768px) { .scroll-indicator { display: none; } }

/* Orbital ambient atrás — sutil */
.hero-orbital {
  position: absolute;
  top: 50%;
  right: -15%;
  transform: translateY(-50%);
  width: clamp(500px, 55vw, 800px);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.4s var(--e-out) 1.4s;
}

body.start .hero-orbital { opacity: 0.28; }

.hero-orbital svg { width: 100%; height: 100%; }

.hero-orbital .orbit-ring {
  fill: none;
  stroke: var(--ink);
  stroke-width: 0.8;
  opacity: 0.4;
  stroke-dasharray: 2 6;
}

.hero-orbital .orbit-ring-solid {
  fill: none;
  stroke: var(--ink);
  stroke-width: 0.6;
  opacity: 0.5;
}

.hero-orbital .orbit-spin {
  transform-origin: center;
  animation: orbitalSpin 60s linear infinite;
}
.hero-orbital .orbit-spin.reverse { animation-direction: reverse; animation-duration: 80s; }
.hero-orbital .orbit-spin.fast { animation-duration: 40s; }

@keyframes orbitalSpin { to { transform: rotate(360deg); } }

.hero-orbital .orbit-dot {
  fill: var(--green);
  filter: drop-shadow(0 0 12px rgba(43, 251, 154, 0.9));
}

.hero-orbital .orbit-dot-ink { fill: var(--ink); opacity: 0.7; }

.hero-orbital .orbit-label {
  font-family: var(--font-mono);
  font-size: 9px;
  fill: var(--ink);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
}

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

/* Glow ambient verde */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--green) 0%, transparent 60%);
  filter: blur(80px);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 2s var(--e-out) 1.4s;
  animation: glowPulse 8s ease-in-out infinite;
}

body.start .hero::before { opacity: 0.18; }

@keyframes glowPulse {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-50%) scale(1.15); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-display);
  transition: transform 0.4s var(--e-out), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  will-change: transform;
}

.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--green); color: var(--ink); }

.btn-green { background: var(--green); color: var(--ink); }
.btn-green:hover { background: var(--ink); color: var(--green); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-strong);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.btn-arrow { width: 14px; height: 14px; transition: transform 0.4s var(--e-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transform: scale(0);
  animation: ripple 0.7s ease-out;
  pointer-events: none;
}

@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ============================================================
   LOGOS MARQUEE — Clientes em fita rolante
   ============================================================ */
.logos-marquee {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-alt);
}

.logos-marquee-header {
  max-width: var(--container);
  margin: 0 auto 32px;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.logos-marquee-header .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logos-marquee-header .label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.logos-marquee-header .count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.logos-marquee-track {
  display: flex;
  gap: 80px;
  align-items: center;
  white-space: nowrap;
  animation: logosScroll 38s linear infinite;
  will-change: transform;
}

.logos-marquee:hover .logos-marquee-track { animation-play-state: paused; }

@keyframes logosScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logos-marquee-item {
  flex-shrink: 0;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  transition: opacity 0.4s var(--e-out), filter 0.4s ease;
  filter: grayscale(0.3) contrast(1.05);
}

.logos-marquee-item:hover { opacity: 1; filter: grayscale(0); }

.logos-marquee-item img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
}

.logos-marquee-divider {
  width: 6px;
  height: 6px;
  background: var(--ink-muted);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.4;
}

/* ============================================================
   FITAS DIAGONAIS
   ============================================================ */
.tapes-section {
  position: relative;
  overflow: hidden;
  margin: 32px 0;
  height: clamp(280px, 32vw, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tape {
  position: absolute;
  left: -10%;
  width: 120%;
  padding: 18px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.tape.tape-1 {
  background: var(--green);
  transform: rotate(-7deg);
  top: 32%;
  z-index: 2;
}

.tape.tape-2 {
  background: var(--ink);
  transform: rotate(6deg);
  top: 42%;
  z-index: 1;
}

.tape-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: tapeScroll 30s linear infinite;
  will-change: transform;
}

.tape.tape-2 .tape-track { animation-direction: reverse; }

@keyframes tapeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.tape-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -0.025em;
  display: inline-flex;
  align-items: center;
  gap: 36px;
  line-height: 1;
}

.tape-1 .tape-item { color: var(--ink); }
.tape-2 .tape-item { color: var(--bg); }

.tape-item::after {
  content: '';
  display: inline-block;
  font-size: 0.7em;
  font-weight: 400;
}

.tape-1 .tape-item::after { color: var(--ink); }
.tape-2 .tape-item::after { color: var(--green); }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  text-align: center;
  padding: var(--section-y) 0;
}

.manifesto-eyebrow {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 32px;
}

.manifesto-eyebrow span {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
  font-size: 16px;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: var(--ink);
  max-width: 1100px;
  margin: 0 auto;
}

.manifesto-text .muted { color: var(--ink-muted); font-weight: 400; }
.manifesto-text .green-bg {
  background: var(--green);
  padding: 0 12px;
  border-radius: 8px;
  display: inline-block;
  line-height: 1.05;
}

.manifesto-text .serif { color: var(--ink); }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.section-head + .section-head { margin-top: 0; }

/* Header completo (eyebrow + h2 + action) — espaço maior antes do conteúdo */
.section-head:last-of-type { margin-bottom: var(--section-gap-head); }

.section-head h2 {
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1.0;
  font-weight: 600;
  letter-spacing: -0.035em;
  max-width: 820px;
}

.section-head h2 .serif { color: var(--green-dim); font-weight: 500; font-style: italic; }
.section-head h2 .green-bg {
  background: var(--green);
  padding: 0 12px;
  border-radius: 8px;
  display: inline-block;
  line-height: 1;
  color: var(--ink);
}

.section-head .section-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* ============================================================
   STATS BENTO
   ============================================================ */
.stats-bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--e-out), transform 0.4s var(--e-out);
  will-change: transform;
}

.stat-card:hover { border-color: var(--ink); transform: translateY(-4px); }

.stat-card.featured {
  grid-row: span 2;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.stat-card.featured .stat-label { color: var(--green); }
.stat-card.featured .stat-label::before { background: var(--green); }
.stat-card.featured .stat-desc { color: rgba(255,255,255,0.7); }
.stat-card.featured .stat-number { color: var(--bg); }
.stat-card.featured .stat-number .unit { color: var(--green); }

.stat-card.green-card {
  background: var(--green);
  border-color: var(--green);
}

.stat-card.green-card .stat-label { color: var(--ink); }
.stat-card.green-card .stat-label::before { background: var(--ink); }

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.stat-label::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--green-dim);
  border-radius: 50%;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 600;
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.stat-number .unit {
  font-size: 0.4em;
  color: var(--green-dim);
  margin-left: 4px;
  font-weight: 600;
}

.stat-card.featured .stat-number { font-size: clamp(64px, 9vw, 128px); }

.stat-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
  max-width: 260px;
}

@media (max-width: 968px) {
  .stats-bento { grid-template-columns: 1fr; }
  .stat-card.featured { grid-row: auto; }
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.case-tile {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.5s var(--e-out), box-shadow 0.5s var(--e-out);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  text-decoration: none;
  transform-style: preserve-3d;
  will-change: transform;
  isolation: isolate;
}

.case-tile:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(10,10,10,0.18); }

.case-tile.large { grid-column: span 4; }
.case-tile.small { grid-column: span 2; }
.case-tile.wide { grid-column: span 6; min-height: 360px; }

@media (max-width: 968px) {
  .cases-grid { grid-template-columns: 1fr; }
  .case-tile.large, .case-tile.small, .case-tile.wide {
    grid-column: span 1;
    min-height: 380px;
  }
}

/* TIPOGRAFIA visual de cliente (wordmark) — fica grande no fundo */
.case-wordmark {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
  user-select: none;
  transition: color 0.6s var(--e-out), transform 0.7s var(--e-out);
}

.case-tile.large .case-wordmark {
  font-size: clamp(140px, 22vw, 360px);
  bottom: -8%;
  right: -4%;
}

.case-tile.small .case-wordmark {
  font-size: clamp(100px, 14vw, 200px);
  bottom: -8%;
  right: -4%;
}

.case-tile:hover .case-wordmark {
  color: rgba(43, 251, 154, 0.10);
  transform: translate(-8px, -8px);
}

/* Sub wordmark italic abaixo do principal */
.case-wordmark-sub {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.45em;
  letter-spacing: -0.02em;
  color: rgba(43, 251, 154, 0.16);
  line-height: 1;
  margin-top: -0.08em;
}

/* Grão sutil no card */
.case-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.04'/></svg>");
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* Cards com background customizado — paleta Unique */
.case-tile.bg-graphite { background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%); }
.case-tile.bg-midnight { background: linear-gradient(135deg, #E8E6E1 0%, #DDD9D2 100%); }
.case-tile.bg-plum     { background: linear-gradient(135deg, #0F1612 0%, #050A07 100%); }

/* ==== LIGHT INVERTED card (Sport West / bg-midnight) ==== */
.case-tile.bg-midnight { border: 1px solid rgba(10, 10, 10, 0.08); }
.case-tile.bg-midnight h3 { color: var(--ink); }
.case-tile.bg-midnight h3 .serif { color: var(--green-dim); }
.case-tile.bg-midnight .case-desc { color: rgba(10, 10, 10, 0.7); }
.case-tile.bg-midnight .case-wordmark { color: rgba(10, 10, 10, 0.05); }
.case-tile.bg-midnight:hover .case-wordmark { color: rgba(31, 214, 128, 0.18); }
.case-tile.bg-midnight .case-wordmark-sub { color: rgba(31, 214, 128, 0.28); }
.case-tile.bg-midnight .case-tag {
  background: rgba(31, 214, 128, 0.12);
  color: var(--green-dim);
  border-color: rgba(31, 214, 128, 0.32);
}
.case-tile.bg-midnight .case-tag::before { background: var(--green-dim); box-shadow: 0 0 8px rgba(31, 214, 128, 0.5); }
.case-tile.bg-midnight .case-metric { border-top-color: rgba(10, 10, 10, 0.12); }
.case-tile.bg-midnight .case-metric .item .val { color: var(--green-dim); }
.case-tile.bg-midnight .case-metric .item .lab { color: rgba(10, 10, 10, 0.5); }
.case-tile.bg-midnight .case-metric .item + .item { border-left-color: rgba(10, 10, 10, 0.12); }
.case-tile.bg-midnight .case-arrow {
  background: var(--ink);
  color: var(--bg);
}
.case-tile.bg-midnight .case-arrow svg { stroke: var(--bg); }
.case-tile.bg-midnight:hover .case-arrow {
  background: var(--green-dim);
  color: var(--ink);
}
.case-tile.bg-midnight:hover .case-arrow svg { stroke: var(--ink); }
.case-tile.bg-midnight::after { opacity: 0.25; }

.case-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.case-content-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.case-content-bottom { display: flex; flex-direction: column; gap: 14px; margin-top: auto; }

.case-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43, 251, 154, 0.15);
  color: var(--green);
  padding: 7px 13px;
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  border: 1px solid rgba(43, 251, 154, 0.25);
}

.case-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.case-tile h3 {
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--bg);
}

.case-tile h3 .serif { color: var(--green); }

.case-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  max-width: 480px;
}

.case-metric {
  display: flex;
  gap: 12px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}

.case-metric .item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.case-metric .item .val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--green);
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.case-metric .item .lab {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.case-metric .item + .item {
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.case-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 18px;
  transition: background 0.4s var(--e-out), transform 0.5s var(--e-out), color 0.4s ease;
  z-index: 3;
  flex-shrink: 0;
}

.case-tile:hover .case-arrow {
  background: var(--green);
  transform: rotate(-45deg) scale(1.05);
}

/* CTA tile (verde) */
.case-tile.cta-tile {
  background: var(--green);
  color: var(--ink);
}

.case-tile.cta-tile::after { display: none; }
.case-tile.cta-tile .case-wordmark { color: rgba(10, 10, 10, 0.08); }
.case-tile.cta-tile:hover .case-wordmark { color: rgba(10, 10, 10, 0.12); }
.case-tile.cta-tile h3 { color: var(--ink); }
.case-tile.cta-tile h3 .serif { color: var(--ink-soft); }
.case-tile.cta-tile .case-desc { color: var(--ink-soft); }
.case-tile.cta-tile .case-tag {
  background: rgba(10, 10, 10, 0.1);
  color: var(--ink);
  border-color: rgba(10, 10, 10, 0.18);
}
.case-tile.cta-tile .case-tag::before { background: var(--ink); }
.case-tile.cta-tile .case-metric { border-top-color: rgba(10,10,10,0.15); }
.case-tile.cta-tile .case-metric .item + .item { border-left-color: rgba(10,10,10,0.15); }
.case-tile.cta-tile .case-metric .item .val { color: var(--ink); }
.case-tile.cta-tile .case-metric .item .lab { color: var(--ink-muted); }
.case-tile.cta-tile .case-arrow { background: var(--ink); color: var(--green); }
.case-tile.cta-tile:hover .case-arrow { background: var(--bg-card); color: var(--ink); }

/* ============================================================
   UNIQUEHUB — Plataforma + App proprietário (full-bleed dark)
   ============================================================ */
.uniquehub {
  position: relative;
  background: var(--ink);
  color: var(--bg);
  padding: clamp(96px, 12vw, 160px) 0 clamp(80px, 10vw, 128px);
  overflow: hidden;
  margin: clamp(48px, 6vw, 80px) 0;
}

/* Wordmark "HUB" fantasma gigante atrás */
.uniquehub-ghost {
  position: absolute;
  bottom: -10%;
  right: -4%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(240px, 32vw, 540px);
  line-height: 0.85;
  letter-spacing: -0.07em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--green);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.uniquehub > .container {
  position: relative;
  z-index: 2;
}

/* Hero da seção (centralizado) */
.uniquehub-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(24px, 3vw, 36px);
  margin-bottom: clamp(72px, 9vw, 120px);
}

.uniquehub-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
}

.uniquehub-eyebrow .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}

.uniquehub-eyebrow .serif {
  color: var(--green);
  font-style: italic;
}

.uniquehub-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--bg);
  margin: 0;
}

.uniquehub-title .serif {
  font-style: italic;
  font-weight: 500;
  color: var(--green);
  letter-spacing: -0.035em;
}

.uniquehub-lede {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 720px;
  margin: 0;
}

.uniquehub-lede .em {
  color: var(--bg);
  font-weight: 500;
}

.uniquehub-cta-group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.uniquehub-cta-link {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.3s var(--e-out), border-color 0.3s var(--e-out);
}

.uniquehub-cta-link:hover {
  color: var(--green);
  border-bottom-color: var(--green);
}

.uniquehub-cta-link svg { width: 14px; height: 14px; }

/* 3 Features em grid horizontal */
.uniquehub-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: clamp(72px, 9vw, 120px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 968px) {
  .uniquehub-features { grid-template-columns: 1fr; }
}

.uniquehub-feature {
  position: relative;
  padding: clamp(32px, 4vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.4s var(--e-out);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.uniquehub-feature:last-child { border-right: none; }

@media (max-width: 968px) {
  .uniquehub-feature {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .uniquehub-feature:last-child { border-bottom: none; }
}

.uniquehub-feature:hover {
  background: rgba(43, 251, 154, 0.04);
}

.uniquehub-feature .num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
}

.uniquehub-feature h4 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 600;
  color: var(--bg);
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.uniquehub-feature p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* Stats: 4 numbers - proporção controlada */
.uniquehub-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: clamp(8px, 1vw, 16px);
}

@media (max-width: 768px) {
  .uniquehub-stats { grid-template-columns: 1fr 1fr; gap: 32px 0; }
}

.uniquehub-stats .stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.uniquehub-stats .stat:first-child { padding-left: 0; }
.uniquehub-stats .stat:last-child { border-right: none; padding-right: 0; }

@media (max-width: 768px) {
  .uniquehub-stats .stat:nth-child(2) { border-right: none; padding-right: 0; }
  .uniquehub-stats .stat:nth-child(odd) { padding-left: 0; }
}

.uniquehub-stats .number {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 4.5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}

.uniquehub-stats .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

/* ============================================================
   QUOTE BLOCK
   ============================================================ */
.quote-block {
  position: relative;
  padding: clamp(48px, 7vw, 88px);
  background: var(--ink);
  border-radius: var(--r-lg);
  margin: 0;
  overflow: hidden;
  color: var(--bg);
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: -60px;
  right: 40px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(220px, 28vw, 400px);
  line-height: 1;
  color: var(--green);
  opacity: 0.12;
  pointer-events: none;
}

.quote-block-text {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 48px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--bg);
  max-width: 920px;
  position: relative;
  z-index: 2;
}

.quote-block-text .serif {
  font-weight: 500;
  font-style: italic;
  color: var(--green);
}

.quote-block-text .ink-bg {
  background: var(--green);
  color: var(--ink);
  padding: 0 12px;
  border-radius: 8px;
  display: inline-block;
  line-height: 1.05;
}

.quote-block-attr {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  position: relative;
  z-index: 2;
}

.quote-block-attr::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--green);
}

@media (max-width: 768px) {
  .quote-block::before { font-size: 200px; right: 20px; top: -40px; }
}


/* ============================================================
   MÉTODO (DARK)
   ============================================================ */
.method-section {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-lg);
  margin: 0 var(--gutter);
  padding: clamp(64px, 7vw, 96px) 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) { .method-section { border-radius: 16px; margin: 0 12px; } }

.method-section .container { color: var(--bg); }
.method-section h2, .method-section h3, .method-section h4 { color: var(--bg); }
.method-section .section-head h2 .green-bg { background: var(--green); color: var(--ink); }

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 48px;
  position: relative;
}

@media (max-width: 968px) {
  .method-grid { grid-template-columns: 1fr; }
}

.method-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 32px 24px;
  position: relative;
  transition: background 0.5s var(--e-out), border-color 0.5s ease;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.method-step:hover {
  background: rgba(43, 251, 154, 0.08);
  border-color: rgba(43, 251, 154, 0.3);
}

.method-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 56px;
  color: var(--green);
  margin-bottom: 24px;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.method-step h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.method-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  flex: 1;
}

.step-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   SERVICES LIST
   ============================================================ */
.services-list {
  margin-top: 48px;
  border-top: 1px solid var(--border-strong);
}

.service-row {
  display: grid;
  grid-template-columns: 60px 60px 1fr 2fr 220px;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-strong);
  position: relative;
  transition: padding 0.5s var(--e-out);
  cursor: pointer;
  overflow: hidden;
}

.service-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--green-soft), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--e-out);
  pointer-events: none;
  z-index: 0;
}

.service-row:hover { padding: 32px 20px; }
.service-row:hover::before { opacity: 1; }

.service-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
}

.service-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.05;
  position: relative;
  z-index: 2;
  transition: transform 0.5s var(--e-out);
}

.service-row:hover .service-name { transform: translateX(6px); }

.service-name .serif { color: var(--green-dim); font-weight: 500; }

.service-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.service-tags .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  transition: all 0.3s var(--e-out);
}

.service-row:hover .service-tags .tag {
  border-color: var(--ink);
  color: var(--ink);
}

@media (max-width: 968px) {
  .service-row { grid-template-columns: 44px 1fr; gap: 14px; padding: 24px 0; }
  .service-row:hover { padding: 24px 12px; }
  .service-num, .service-desc, .service-tags { display: none; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-lg);
  margin: 0 var(--gutter);
  padding: clamp(64px, 7vw, 96px) 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) { .testimonials { border-radius: 16px; margin: 0 12px; } }

.testimonials .container { color: var(--bg); }
.testimonials h2 { color: var(--bg); }
.testimonials .eyebrow { color: var(--green); }
.testimonials .eyebrow::before { background: var(--green); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 48px;
}

@media (max-width: 968px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.5s var(--e-out);
}

.testimonial:hover {
  background: rgba(43, 251, 154, 0.06);
  border-color: rgba(43, 251, 154, 0.3);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--bg);
}

.testimonial-quote::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 0;
  color: var(--green);
  display: block;
  margin-bottom: 16px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-info { display: flex; flex-direction: column; gap: 2px; }
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--bg); }
.testimonial-role { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
  margin-top: 48px;
}

@media (max-width: 968px) { .founder-grid { grid-template-columns: 1fr; gap: 36px; } }

.founder-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--ink);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--e-out);
}

.founder-image:hover img { transform: scale(1.04); }

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

.founder-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.founder-badge .green-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.founder-badge .green-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-dim);
  border-radius: 50%;
}

.founder-name {
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}

.founder-name .serif { color: var(--ink); font-weight: 400; }

.founder-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 3px solid var(--green);
}

.founder-quote-attribution {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.founder-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border-strong);
}

.founder-meta-item .label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.founder-meta-item .value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

@media (max-width: 968px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s var(--e-out), transform 0.4s var(--e-out);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.pricing-card:hover { border-color: var(--ink); transform: translateY(-4px); }

.pricing-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.pricing-card.featured .pricing-num { color: var(--green); }
.pricing-card.featured .pricing-segment { color: rgba(255,255,255,0.55); }
.pricing-card.featured .pricing-from .label { color: rgba(255,255,255,0.55); }
.pricing-card.featured .pricing-from .value { color: var(--bg); }
.pricing-card.featured .pricing-from .value .sans { color: rgba(255,255,255,0.55); }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.7); }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.12); }
.pricing-card.featured .pricing-features li:last-child { border-bottom-color: rgba(255,255,255,0.12); }
.pricing-card.featured .pricing-features li::before { color: var(--green); }
.pricing-card.featured h3 { color: var(--bg); }
.pricing-card.featured h3 .serif { color: var(--green); }

.pricing-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--green);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 11px;
  border-radius: var(--r-pill);
  font-weight: 600;
  z-index: 1;
}

.pricing-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pricing-card h3 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.pricing-card h3 .serif { color: var(--ink); font-weight: 400; }

.pricing-segment {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}

.pricing-from { margin-bottom: 28px; }

.pricing-from .label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.pricing-from .value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.pricing-from .value .sans {
  font-weight: 400;
  font-size: 0.56em;
  color: var(--ink-muted);
  margin-left: 4px;
  display: block;
  margin-top: 4px;
  letter-spacing: 0;
}

.pricing-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.5; margin-bottom: 28px; }

.pricing-features { list-style: none; margin-bottom: 36px; flex: 1; }

.pricing-features li {
  padding: 12px 0;
  font-size: 14px;
  color: var(--ink);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li:last-child { border-bottom: 1px solid var(--border); }

.pricing-features li::before {
  content: '✓';
  color: var(--green-dim);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.pricing-card .btn { width: 100%; justify-content: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  margin-top: 48px;
}

@media (max-width: 968px) {
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-intro { position: static; top: auto; }
}

.faq-intro { position: sticky; top: 100px; align-self: start; }
.faq-intro p { color: var(--ink-muted); font-size: 15px; margin-top: 20px; max-width: 360px; line-height: 1.55; }

.faq-list { border-top: 1px solid var(--border-strong); }

.faq-item { border-bottom: 1px solid var(--border-strong); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-display);
  color: var(--ink);
  transition: color 0.3s var(--e-out);
  cursor: pointer;
  letter-spacing: -0.015em;
}

.faq-question:hover { color: var(--ink-muted); }

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.5s var(--e-back), background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(135deg); background: var(--green); color: var(--ink); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.6s var(--e-out); }

.faq-answer-inner {
  padding-bottom: 28px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 700px;
}

.faq-item.open .faq-answer { max-height: 500px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-lg);
  margin: 56px var(--gutter);
  padding: clamp(64px, 7vw, 96px) 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(43, 251, 154, 0.12), transparent 55%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.55; transform: translate(-50%, -50%) scale(1.12); }
}

@media (max-width: 768px) {
  .cta-final { border-radius: 16px; margin: 32px 12px; padding: 64px 20px; }
}

.cta-final .eyebrow { color: var(--green); justify-content: center; }
.cta-final .eyebrow::before { background: var(--green); }

.cta-final h2 {
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.95;
  margin: 28px 0 40px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--bg);
  position: relative;
  z-index: 2;
}

.cta-final h2 .serif { color: var(--green); font-weight: 400; }
.cta-final h2 .green-bg {
  background: var(--green);
  color: var(--ink);
  padding: 0 14px;
  border-radius: 8px;
  display: inline-block;
  line-height: 1;
}

.cta-final-cta { display: inline-flex; flex-direction: column; gap: 20px; align-items: center; position: relative; z-index: 2; }

.cta-final-contacts {
  display: flex;
  gap: 40px;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cta-final-contacts a { color: var(--bg); transition: color 0.3s var(--e-out); }
.cta-final-contacts a:hover { color: var(--green); }

@media (max-width: 768px) {
  .cta-final-contacts { flex-direction: column; gap: 12px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}

.footer-massive {
  font-family: var(--font-display);
  font-size: clamp(80px, 20vw, 300px);
  line-height: 0.85;
  font-weight: 600;
  letter-spacing: -0.06em;
  color: var(--bg);
  margin-bottom: 64px;
  display: inline-block;
  background: linear-gradient(180deg, var(--bg) 50%, var(--green) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 100% 200%;
  background-position: 0 0;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.9s var(--e-out);
}

.footer-massive:hover { background-position: 0 100%; }
.footer-massive .serif { font-style: italic; font-weight: 400; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 968px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }

.footer-brand .eyebrow { color: var(--green); }
.footer-brand .eyebrow::before { background: var(--green); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14px; max-width: 320px; margin-top: 14px; }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 14px;
  color: var(--bg);
  transition: color 0.3s var(--e-out), transform 0.3s var(--e-out);
  display: inline-block;
}

.footer-col a:hover { color: var(--green); transform: translateX(4px); }

.footer-bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ============================================================
   WPP FLOAT
   ============================================================ */
.wpp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.4s var(--e-back);
}

.wpp:hover { transform: scale(1.1); }

.wpp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  z-index: -1;
  animation: wppPulse 2.5s ease-out infinite;
}

@keyframes wppPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

.wpp svg { width: 28px; height: 28px; color: white; }

@media (max-width: 768px) { .wpp { bottom: 20px; right: 20px; width: 52px; height: 52px; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.1s var(--e-out), transform 1.1s var(--e-out);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--e-out), transform 0.85s var(--e-out);
}

.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.13s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.21s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.29s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.37s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.45s; }

/* ============================================================
   SISTEMA VISUAL — Glow + ícones
   ============================================================ */

/* Círculo desfocado verde (glow ambient) */
.deco-glow {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--green), transparent 70%);
  filter: blur(60px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  animation: glowFloat 14s ease-in-out infinite;
}

@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.15); }
  66% { transform: translate(-20px, -50px) scale(0.9); }
}

/* Ícone SVG container */
.icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  color: var(--ink);
  transition: all 0.5s var(--e-out);
  flex-shrink: 0;
  background: transparent;
}

.icon svg { width: 22px; height: 22px; stroke-width: 1.5; }

.service-row:hover .icon,
.method-step:hover .icon {
  background: var(--green);
  border-color: var(--green);
  color: var(--ink);
  transform: rotate(-12deg);
}

.icon.dark { color: var(--green); border-color: rgba(255,255,255,0.18); }
.icon.dark svg { color: var(--green); }
.method-step:hover .icon.dark { background: var(--green); color: var(--ink); border-color: var(--green); }

/* Big quote mark editorial */
.deco-quote-mark {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(180px, 28vw, 460px);
  line-height: 0.7;
  color: var(--green);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* Pulse dot indicator */
.pulse-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.pulse-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(43, 251, 154, 0.7);
  animation: pulse 1.6s ease-in-out infinite;
}

/* ============================================================
   CONTATO PAGE — Channels + Form
   ============================================================ */

/* Hero overrides na page contato (body.start) */
body.start .hero {
  min-height: auto;
  padding-top: clamp(140px, 18vh, 220px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

body.start .hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
  margin-bottom: 40px;
  padding: 10px 18px;
  border: 1px solid var(--border-mid);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.4);
}

body.start .hero-meta-line {
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

body.start .hero-meta-line + .hero-meta-line::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 24px;
  box-shadow: 0 0 8px var(--green-soft);
}

body.start .hero .display-1 {
  font-size: clamp(56px, 8.8vw, 132px);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.025em;
  max-width: 1200px;
}

body.start .hero-headline-line {
  display: block;
}

body.start .hero-bottom {
  margin-top: 48px;
  max-width: 680px;
}

body.start .hero-lede {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
}

body.start .hero-lede .serif {
  color: var(--green-dim);
  font-style: italic;
  font-weight: 500;
}

/* FORM SECTION — Grid layout */
#form {
  padding: clamp(48px, 6vw, 96px) 0 var(--section-y);
  background: var(--bg);
  position: relative;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
  position: relative;
}

@media (max-width: 968px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}

/* ==== INFO (esquerda) ==== */
.contact-info { position: relative; }

.contact-info h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.contact-info-title { margin-top: 24px; }

.contact-info h2 .serif {
  color: var(--green-dim);
  font-style: italic;
  font-weight: 500;
}

.contact-info .body {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.contact-info-lede {
  margin-top: 24px;
  max-width: 420px;
}

.contact-channels {
  margin-top: 56px;
  border-top: 1px solid var(--border-mid);
}

.contact-channel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-mid);
  transition: padding 0.35s var(--e-out);
}

a.contact-channel { cursor: pointer; }
a.contact-channel:hover { padding-left: 12px; }

.contact-channel .label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
}

.contact-channel .value {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.3s var(--e-out);
}

a.contact-channel:hover .value { color: var(--green-dim); }

/* ==== FORM (direita) ==== */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.6vw, 52px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 24px 60px -32px rgba(10, 10, 10, 0.14);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 32px;
  width: 56px;
  height: 4px;
  background: var(--green);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 0 16px var(--green-soft);
}

/* FORM ROW with floating label */
.form-row {
  position: relative;
  margin-bottom: 4px;
  padding-top: 22px;
  border-bottom: 1px solid var(--border-mid);
  transition: border-color 0.3s var(--e-out);
}

.form-row:focus-within {
  border-bottom-color: var(--ink);
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 6px 0 16px;
  font: 500 17px/1.4 var(--font-display);
  color: var(--ink);
  outline: none;
  font-family: var(--font-display);
}

.form-row textarea {
  resize: vertical;
  min-height: 90px;
  font-weight: 400;
}

.form-row select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'><path d='M2 4l4 4 4-4' stroke='%230A0A0A' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
}

.form-row label {
  position: absolute;
  top: 26px;
  left: 0;
  font: 400 16px var(--font-display);
  color: var(--ink-muted);
  pointer-events: none;
  transform-origin: left top;
  transition: transform 0.35s var(--e-out), color 0.3s var(--e-out);
}

/* Floating label active states — INPUTS e TEXTAREAS */
.form-row input:focus ~ label,
.form-row input:not(:placeholder-shown) ~ label,
.form-row textarea:focus ~ label,
.form-row textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-22px) scale(0.62);
  color: var(--green-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* SELECT — label SEMPRE no topo (select tem placeholder próprio "Selecione...") */
.form-row select ~ label {
  top: 4px;
  transform: none;
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.form-row:focus-within select ~ label,
.form-row.has-value select ~ label {
  color: var(--green-dim);
}

/* Native autofill fix */
.form-row input:-webkit-autofill,
.form-row input:-webkit-autofill:hover,
.form-row input:-webkit-autofill:focus,
.form-row textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px var(--bg-card) inset !important;
  -webkit-text-fill-color: var(--ink) !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* Submit button */
.contact-form .btn {
  margin-top: 36px;
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px 32px;
}

.contact-form .btn-arrow {
  transition: transform 0.35s var(--e-out);
}

.contact-form .btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Disclaimer footer */
.contact-form > p {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-faded);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
}

/* Required asterisks */
.form-row label::after {
  content: attr(data-required);
  color: var(--green-dim);
}

/* Mobile adjustments */
@media (max-width: 640px) {
  body.start .hero-meta {
    font-size: 10px;
    gap: 8px 16px;
    padding: 8px 14px;
  }

  body.start .hero-meta-line + .hero-meta-line::before {
    margin-right: 16px;
  }

  .contact-form {
    padding: 28px 22px;
  }
}

/* ============================================================
   PERFORMANCE OPTIMIZATIONS
   ============================================================ */

/* content-visibility nas seções abaixo da fold:
   browser pula renderização até elemento entrar próximo do viewport.
   Ganho enorme em scroll perf. contain-intrinsic-size evita layout shift. */
.method,
.cases-bento,
.uniquehub,
.quote-block,
.founder-section,
.faq,
.pricing,
.stats-bento,
.services-list,
.logos-strip,
.results-stream,
footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

/* GPU promotion em elementos animados pesados */
.intro,
.orbital-element,
.hero-glow,
.cta-glow,
.wpp,
.logos-marquee,
.results-tape,
.nav-ticker-track {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Reduzir custo do backdrop-filter:
   blur custa MUITO em GPU. Diminuir agressividade. */
.nav {
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
}

.nav.scrolled {
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

/* Pausar animações quando body tem .anim-paused (set por IntersectionObserver) */
body.anim-paused .orbital-element,
body.anim-paused .hero-glow,
body.anim-paused .cta-glow,
body.anim-paused .logos-marquee-track,
body.anim-paused .results-tape-track {
  animation-play-state: paused;
}

/* Prefers reduced motion — desliga tudo pesado */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .orbital-element,
  .hero-glow,
  .cta-glow,
  .nav-ticker-track,
  .logos-marquee-track,
  .results-tape-track {
    animation: none !important;
  }

  .intro { display: none !important; }
}

/* Imagens externas — fade-in suave quando carregam */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s var(--e-out);
}
img[loading="lazy"].loaded,
img[loading="lazy"]:not([src=""]) {
  opacity: 1;
}
