/* ============================================================
   XPAND — DESIGN SYSTEM v2
   Philosophy: Editorial · Premium · Anti-template
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; font-size: 16px; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── TOKENS ── */
:root {
  /* Color */
  --c-bg:          #050507;
  --c-bg-1:        #08080d;
  --c-bg-2:        #0d0d15;
  --c-bg-3:        #111119;
  --c-border:      rgba(255,255,255,0.07);
  --c-border-md:   rgba(255,255,255,0.12);
  --c-border-hi:   rgba(255,255,255,0.18);

  --c-blue:        #2840e8;
  --c-blue-hi:     #3a55f5;
  --c-blue-glow:   rgba(40,64,232,0.18);
  --c-blue-subtle: rgba(40,64,232,0.08);

  --c-white:       #ffffff;
  --c-white-90:    rgba(255,255,255,0.9);
  --c-white-70:    rgba(255,255,255,0.7);
  --c-white-50:    rgba(255,255,255,0.5);
  --c-white-30:    rgba(255,255,255,0.3);
  --c-white-15:    rgba(255,255,255,0.15);
  --c-white-08:    rgba(255,255,255,0.08);
  --c-white-04:    rgba(255,255,255,0.04);

  --c-green:       #00c27a;
  --c-green-s:     rgba(0,194,122,0.15);

  /* Typography */
  --f-display: 'Bricolage Grotesque', 'Inter', sans-serif;
  --f-body:    'Inter', sans-serif;
  --f-label:   'Poppins', sans-serif;

  /* Spacing */
  --sp-xs:   8px;
  --sp-sm:  16px;
  --sp-md:  32px;
  --sp-lg:  64px;
  --sp-xl: 120px;

  /* Layout */
  --container: 1200px;
  --container-sm: 900px;

  /* Radius */
  --r-sm:   6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-pill: 9999px;

  /* Ease */
  --ease:        cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.175,.885,.32,1.275);
  --ease-out:    cubic-bezier(0,0,.2,1);
}

body {
  background: var(--c-bg);
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--c-bg-1); }
::-webkit-scrollbar-thumb { background: var(--c-blue); border-radius: 4px; }

/* ── CONTAINER ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

/* ── EYEBROW ── */
.eyebrow {
  display: inline-block;
  font-family: var(--f-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-blue-hi);
  margin-bottom: var(--sp-sm);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-label);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-blue);
  color: var(--c-white);
  box-shadow: 0 0 0 1px rgba(40,64,232,0.5), 0 8px 24px rgba(40,64,232,0.3);
}

.btn--primary:hover {
  background: var(--c-blue-hi);
  box-shadow: 0 0 0 1px rgba(58,85,245,0.6), 0 12px 40px rgba(40,64,232,0.5);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--c-white-70);
  box-shadow: 0 0 0 1px var(--c-border-md);
}

.btn--ghost:hover {
  color: var(--c-white);
  box-shadow: 0 0 0 1px var(--c-border-hi);
  background: var(--c-white-04);
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 15px 26px;
  font-size: 0.95rem;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.nav.is-scrolled {
  background: rgba(5,5,7,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}

.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
  /* A logo é branca — garante visibilidade no fundo escuro */
  filter: brightness(1);
  transition: opacity 0.2s;
}

.nav__logo:hover .nav__logo-img {
  opacity: 0.85;
}

/* Footer: logo levemente maior */
.footer__top .nav__logo-img {
  height: 32px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav__link {
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-white-50);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  transition: color 0.2s, background 0.2s;
}

.nav__link:hover {
  color: var(--c-white);
  background: var(--c-white-08);
}

.nav__cta {
  font-family: var(--f-label);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-white);
  background: var(--c-blue);
  padding: 9px 20px;
  border-radius: var(--r-pill);
  box-shadow: 0 0 0 1px rgba(40,64,232,0.4);
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
}

.nav__cta:hover {
  background: var(--c-blue-hi);
  box-shadow: 0 0 0 1px rgba(58,85,245,0.6), 0 8px 24px rgba(40,64,232,0.35);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 6px;
  margin-left: auto;
}

.bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
  transform-origin: center;
}

.nav__hamburger.is-open .bar:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav__hamburger.is-open .bar:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 68px;
  background: rgba(5,5,7,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 32px;
  gap: 4px;
  z-index: 99;
  border-top: 1px solid var(--c-border);
}

.mobile-menu.is-open { display: flex; }

.mobile-menu__link {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-white-50);
  padding: 10px 0;
  transition: color 0.2s;
}

.mobile-menu__link:hover { color: var(--c-white); }

.mobile-menu__cta {
  margin-top: 32px;
  font-family: var(--f-label);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-white);
  background: var(--c-blue);
  padding: 12px 24px;
  border-radius: var(--r-pill);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--c-bg);
}

/* Light beam */
.hero__light-beam {
  position: absolute;
  width: 1px;
  height: 140%;
  background: linear-gradient(180deg, transparent 0%, rgba(40,64,232,0.5) 40%, rgba(40,64,232,0.2) 70%, transparent 100%);
  top: -20%;
  left: 15%;
  transform: rotate(-30deg);
  transform-origin: top center;
  filter: blur(1px);
  animation: beamPulse 6s ease-in-out infinite;
}

@keyframes beamPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.9; }
}

/* Noise overlay */
.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.6;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
}

/* Top bar */
.hero__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.hero__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-label);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--c-white-50);
  letter-spacing: 0.05em;
}

.status__dot {
  width: 7px;
  height: 7px;
  background: var(--c-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--c-green);
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 6px var(--c-green); }
  50% { box-shadow: 0 0 16px var(--c-green), 0 0 24px rgba(0,194,122,0.4); }
}

.hero__flag {
  font-family: var(--f-label);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--c-white-30);
  letter-spacing: 0.05em;
}

/* Main */
.hero__main { flex: 1; display: flex; align-items: flex-end; padding-bottom: 40px; }

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
  max-width: 700px;
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--c-white);
  flex-shrink: 0;
}

.title__line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: titleReveal 0.9s var(--ease-out) forwards;
}

.title__line--accent,
.title__accent {
  color: var(--c-blue-hi);
}

.title__line:nth-child(2) { animation-delay: 0.15s; }

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



.hero__desc {
  font-size: 1.05rem;
  color: var(--c-white-60);
  line-height: 1.7;
  max-width: 480px;
  opacity: 0;
  transform: translateY(16px);
  animation: titleReveal 0.8s var(--ease-out) 0.3s forwards;
}

.hero__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: titleReveal 0.8s var(--ease-out) 0.45s forwards;
}

/* Numbers strip */

/* ── INDICATORS (new) ── */
.hero__indicators {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.hero__ind {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid var(--c-border);
  transition: background 0.2s;
}

.hero__ind:last-child { border-right: none; }
.hero__ind:hover { background: var(--c-white-04); }

.ind__num-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
  margin-bottom: 4px;
}

.ind__num {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--c-white);
  line-height: 1;
}

.ind__sup {
  font-family: var(--f-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 800;
  color: var(--c-blue-hi);
  line-height: 1;
}

.ind__title {
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-white-80);
  letter-spacing: -0.01em;
}

.ind__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.55;
  font-family: var(--f-body);
}

.hero__ind-sep { display: none; }

/* ─── keep old classes as no-op so nothing breaks ─── */
.hero__numbers { display: none; }
.hero__num-item, .num__value, .num__sup, .num__label, .hero__divider {}


/* Ticker */
.hero__ticker {
  overflow: hidden;
  padding: 18px 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}

.ticker__item {
  font-family: var(--f-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white-30);
  white-space: nowrap;
}

.ticker__sep {
  color: var(--c-blue-hi);
  opacity: 0.6;
  font-size: 0.65rem;
}

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

/* ============================================================
   VSL
   ============================================================ */
.vsl {
  padding: var(--sp-xl) 0;
  background: var(--c-bg-1);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}

.vsl::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40,64,232,0.1) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.vsl__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}

.vsl__header { position: relative; z-index: 2; }

.vsl__title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--c-white);
  margin-bottom: 20px;
}

.vsl__title em {
  font-style: normal;
  color: var(--c-white-40);
}

.vsl__sub {
  font-size: 0.95rem;
  color: var(--c-white-50);
  line-height: 1.7;
}

/* Player */
.vsl__player-wrap { position: relative; z-index: 2; }

.vsl__player {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 0 1px var(--c-border), 0 32px 80px rgba(0,0,0,0.7), 0 0 80px rgba(40,64,232,0.1);
  aspect-ratio: 16/9;
  transition: box-shadow 0.3s var(--ease);
}

.vsl__player:hover {
  box-shadow: 0 0 0 1px var(--c-border-md), 0 32px 80px rgba(0,0,0,0.8), 0 0 100px rgba(40,64,232,0.2);
}

.player__thumb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player__thumb-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a14 0%, #080820 50%, #060616 100%);
}

/* Grid pattern on thumb */
.player__thumb-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(40,64,232,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40,64,232,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.player__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(40,64,232,0.15) 0%, transparent 70%);
}

.player__thumb-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 60px;
}

.player__logo-mark {
  width: 64px;
  height: 64px;
  background: var(--c-blue);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--c-white);
  box-shadow: 0 8px 32px rgba(40,64,232,0.5);
}

.player__thumb-label {
  font-family: var(--f-label);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-white-50);
  letter-spacing: 0.08em;
}

.player__play {
  position: relative;
  z-index: 3;
  width: 76px;
  height: 76px;
  background: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-bg);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease);
  cursor: pointer;
}

.player__play:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 12px rgba(255,255,255,0.08);
}

.play__ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  animation: ringPulse 2.5s ease-in-out infinite;
}

.play__ring::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  animation: ringPulse 2.5s ease-in-out 0.8s infinite;
}

@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

.player__duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: var(--f-label);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-white-70);
  background: rgba(0,0,0,0.5);
  padding: 4px 8px;
  border-radius: var(--r-sm);
  letter-spacing: 0.05em;
  z-index: 3;
}

.player__iframe-wrap {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.player__iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Proof strip */
.vsl__proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 20px;
}

.proof__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-label);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--c-white-40);
}

.proof__item svg { color: var(--c-green); flex-shrink: 0; }

/* ============================================================
   SERVIÇOS
   ============================================================ */
.servicos {
  padding: var(--sp-xl) 0;
  position: relative;
}

.servicos__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.servicos__header {
  max-width: 560px;
  margin-bottom: var(--sp-lg);
}

.servicos__title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--c-white);
}

.servicos__title em {
  font-style: normal;
  color: var(--c-white-30);
}

/* Accordion list */
.servicos__list {
  border-top: 1px solid var(--c-border);
}

.svc {
  border-bottom: 1px solid var(--c-border);
  transition: border-color 0.2s;
}

.svc:focus { outline: 2px solid var(--c-blue-hi); outline-offset: -2px; }

.svc.is-open { border-color: var(--c-border-md); }

.svc__head {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  user-select: none;
}

.svc__num {
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-white-20);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  width: 28px;
  transition: color 0.25s;
}

.svc.is-open .svc__num,
.svc:hover .svc__num {
  color: var(--c-blue-hi);
}

.svc__title-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.svc__name {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--c-white-70);
  transition: color 0.25s;
}

.svc.is-open .svc__name,
.svc:hover .svc__name { color: var(--c-white); }

.svc__mode {
  color: var(--c-white-40);
  font-weight: 600;
}

.svc__tag {
  font-family: var(--f-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-blue-hi);
  background: var(--c-blue-subtle);
  border: 1px solid rgba(40,64,232,0.2);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
}

.svc__toggle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white-30);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), color 0.2s;
}

.svc.is-open .svc__toggle { transform: rotate(180deg); color: var(--c-blue-hi); }

.svc__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
  padding-left: 52px;
}

.svc.is-open .svc__body { grid-template-rows: 1fr; }

.svc__body > * { overflow: hidden; }

.svc__body p {
  font-size: 0.95rem;
  color: var(--c-white-50);
  line-height: 1.75;
  padding-bottom: 24px;
}

.svc__body strong { color: var(--c-white-80); font-weight: 600; }

.svc__link {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-label);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-blue-hi);
  margin-bottom: 28px;
  transition: gap 0.2s;
  gap: 4px;
}

.svc__link:hover { gap: 8px; }

/* ============================================================
   SERVIÇOS — CARDS GRID v2
   ============================================================ */
.servicos__subtitle {
  font-size: 0.95rem;
  color: var(--c-white-40);
  line-height: 1.7;
  margin-top: 12px;
}
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: var(--sp-lg);
}
.svc-card {
  background: var(--c-bg-1);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at top left, rgba(40,64,232,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.svc-card:hover { border-color: var(--c-border-md); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.svc-card:hover::before { opacity: 1; }
.svc-card__header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.svc-card__num {
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--c-white-20);
  letter-spacing: 0.08em;
}
.svc-card__tag {
  font-family: var(--f-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-blue-hi);
  background: var(--c-blue-subtle);
  border: 1px solid rgba(40,64,232,0.2);
  padding: 3px 10px;
  border-radius: var(--r-pill);
}
.svc-card__tag--green  { color: var(--c-green);  background: var(--c-green-s);           border-color: rgba(0,194,122,0.2); }
.svc-card__tag--purple { color: #a78bfa;          background: rgba(167,139,250,0.1);      border-color: rgba(167,139,250,0.2); }
.svc-card__tag--orange { color: #fb923c;          background: rgba(251,146,60,0.1);       border-color: rgba(251,146,60,0.2); }
.svc-card__tag--yellow { color: #fbbf24;          background: rgba(251,191,36,0.1);       border-color: rgba(251,191,36,0.2); }
.svc-card__tag--teal   { color: #2dd4bf;          background: rgba(45,212,191,0.1);       border-color: rgba(45,212,191,0.2); }
.svc-card__tag--blue2  { color: #60a5fa;          background: rgba(96,165,250,0.1);       border-color: rgba(96,165,250,0.2); }
.svc-card__title {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--c-white);
}
.svc-card__title span { color: var(--c-white-50); }
.svc-card__desc { font-size: 0.9rem; color: var(--c-white-50); line-height: 1.7; }
.svc-card__divider { height: 1px; background: var(--c-border); margin: 4px 0; }
.svc-card__section-label {
  font-family: var(--f-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white-30);
  margin-bottom: 10px;
}
.svc-card__list { display: flex; flex-direction: column; gap: 8px; }
.svc-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--c-white-60);
  line-height: 1.5;
}
.svc-card__list li::before {
  content: '✓';
  color: var(--c-blue-hi);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.svc-card__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid var(--c-border);
  padding-top: 16px;
  margin-top: auto;
}
.svc-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--c-border);
  padding-top: 16px;
  margin-top: auto;
}
.svc-card__meta { display: flex; flex-direction: column; gap: 3px; }
.meta__label {
  font-family: var(--f-label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-white-20);
}
.meta__val { font-size: 0.78rem; color: var(--c-white-50); line-height: 1.4; }
.svc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-label);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-white);
  background: var(--c-blue);
  padding: 11px 20px;
  border-radius: var(--r-pill);
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 16px rgba(40,64,232,0.3);
  align-self: flex-start;
  margin-top: auto;
}
.svc-card__cta:hover { background: var(--c-blue-hi); box-shadow: 0 8px 24px rgba(40,64,232,0.5); gap: 10px; }
.svc-card__cta--green { background: var(--c-green); box-shadow: 0 4px 16px rgba(0,194,122,0.3); }
.svc-card__cta--green:hover { background: #00d987; box-shadow: 0 8px 24px rgba(0,194,122,0.4); }
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--f-label);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-blue-hi);
  transition: gap 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.svc-card__link:hover { gap: 8px; }

/* ============================================================
   DEMO WALL — Prova Real
   ============================================================ */
.demo-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.demo-wall__label {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.demo-wall__label p { font-size: 0.9rem; color: var(--c-white-40); }
.demo-card {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.demo-card:hover { border-color: var(--c-border-md); transform: translateY(-2px); }
.demo-card__header { display: flex; align-items: flex-start; gap: 12px; }
.demo-card__icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--c-blue-subtle);
  border: 1px solid rgba(40,64,232,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-blue-hi);
  flex-shrink: 0;
}
.demo-card__icon-wrap--blue  { background: rgba(96,165,250,0.1); border-color: rgba(96,165,250,0.2); color: #60a5fa; }
.demo-card__icon-wrap--green { background: var(--c-green-s); border-color: rgba(0,194,122,0.2); color: var(--c-green); }
.demo-card__title { font-size: 0.88rem; font-weight: 600; color: var(--c-white-80); line-height: 1.4; }
.demo-card__sub   { font-size: 0.72rem; color: var(--c-white-30); margin-top: 2px; }
.demo-card__badge {
  font-family: var(--f-label);
  font-size: 0.62rem;
  font-weight: 700;
  color: #f87171;
  background: rgba(248,113,113,0.12);
  border: 1px solid rgba(248,113,113,0.2);
  padding: 3px 8px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
/* Audio player */
.audio-player {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 12px 16px;
}
.audio-player__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-blue);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-spring), background 0.2s;
  cursor: pointer;
}
.audio-player__btn:hover { background: var(--c-blue-hi); transform: scale(1.08); }
.audio-player__wave {
  display: flex;
  align-items: center;
  gap: 3px;
  flex: 1;
  height: 32px;
}
.audio-player__wave span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--c-white-15);
  animation: waveIdle 1.4s ease-in-out infinite;
  transform-origin: bottom;
}
.audio-player__wave span:nth-child(1)  { height: 8px; animation-delay: 0s; }
.audio-player__wave span:nth-child(2)  { height: 18px; animation-delay: 0.05s; }
.audio-player__wave span:nth-child(3)  { height: 12px; animation-delay: 0.1s; }
.audio-player__wave span:nth-child(4)  { height: 22px; animation-delay: 0.15s; }
.audio-player__wave span:nth-child(5)  { height: 10px; animation-delay: 0.2s; }
.audio-player__wave span:nth-child(6)  { height: 16px; animation-delay: 0.05s; }
.audio-player__wave span:nth-child(7)  { height: 26px; animation-delay: 0.1s; }
.audio-player__wave span:nth-child(8)  { height: 14px; animation-delay: 0.15s; }
.audio-player__wave span:nth-child(9)  { height: 20px; animation-delay: 0.2s; }
.audio-player__wave span:nth-child(10) { height: 8px;  animation-delay: 0s; }
.audio-player__wave span:nth-child(n+11) { height: 14px; animation-delay: 0.1s; }
@keyframes waveIdle {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.6; transform: scaleY(1.2); }
}
.audio-player.is-playing .audio-player__wave span {
  background: var(--c-blue-hi);
  animation: wavePlaying 0.6s ease-in-out infinite alternate;
}
@keyframes wavePlaying {
  0%   { transform: scaleY(0.4); opacity: 0.7; }
  100% { transform: scaleY(1);   opacity: 1; }
}
.audio-player__info { display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; }
.audio-player__time     { font-family: var(--f-display); font-size: 0.75rem; font-weight: 700; color: var(--c-white-70); }
.audio-player__duration { font-family: var(--f-label);   font-size: 0.62rem; color: var(--c-white-30); }
/* Transcript */
.transcript { display: flex; flex-direction: column; gap: 8px; }
.transcript__label {
  font-family: var(--f-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-white-20);
  margin-bottom: 2px;
}
.transcript__lines { display: flex; flex-direction: column; gap: 10px; }
.transcript__line { display: flex; align-items: flex-start; gap: 8px; font-size: 0.8rem; color: var(--c-white-50); line-height: 1.5; }
.transcript__line--success { color: var(--c-green); }
.t-speaker {
  font-family: var(--f-label);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}
.t-speaker--ai   { background: var(--c-blue-subtle); color: var(--c-blue-hi); border: 1px solid rgba(40,64,232,0.2); }
.t-speaker--user { background: var(--c-white-08);    color: var(--c-white-50); border: 1px solid var(--c-border); }
.demo-card__note { font-size: 0.72rem; color: var(--c-white-20); border-top: 1px solid var(--c-border); padding-top: 12px; margin-top: auto; font-style: italic; }
/* Video thumb */
.demo-video-thumb { position: relative; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; cursor: pointer; }
.demo-video-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #080820, #060616); }
.demo-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(40,64,232,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(40,64,232,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.demo-video-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(40,64,232,0.15) 0%, transparent 70%); }
.demo-video-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; z-index: 2; }
.demo-video-logo {
  width: 44px; height: 44px;
  background: var(--c-blue);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 1.3rem; font-weight: 900; color: var(--c-white);
  box-shadow: 0 4px 16px rgba(40,64,232,0.4);
}
.demo-video-content p { font-family: var(--f-label); font-size: 0.72rem; font-weight: 500; color: var(--c-white-40); letter-spacing: 0.06em; }
.demo-video-play {
  position: absolute; bottom: 16px; right: 16px; z-index: 3;
  width: 48px; height: 48px;
  background: var(--c-white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-bg);
  transition: transform 0.25s var(--ease-spring);
  cursor: pointer;
}
.demo-video-play:hover { transform: scale(1.1); }
.demo-video-duration {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--f-label); font-size: 0.68rem; font-weight: 600; color: var(--c-white-60);
  background: rgba(0,0,0,0.5); padding: 3px 7px; border-radius: 4px; z-index: 3;
}
.demo-card__cta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.demo-card__cta-note { font-size: 0.75rem; color: var(--c-white-30); }
.demo-card__badge--blue { color: #60a5fa; background: rgba(96,165,250,0.12); border-color: rgba(96,165,250,0.2); }

/* Audio player track + progress */
.audio-player__track {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.audio-player__progress {
  -webkit-appearance: none;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--c-white-08);
  outline: none;
  cursor: pointer;
  accent-color: var(--c-blue-hi);
}
.audio-player__progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--c-blue-hi);
  cursor: pointer;
}
.audio-player__btn--blue { background: #2563eb; }
.audio-player__btn--blue:hover { background: #3b82f6; }

/* Nicho badge */
.demo-card__nicho {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--c-border);
  padding-top: 14px;
  margin-top: 0;
}
.demo-card__nicho p { font-size: 0.78rem; color: var(--c-white-40); line-height: 1.5; }
.nicho-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  align-self: flex-start;
}
/* cor padronizada para ambos os badges de nicho */
.nicho-badge {
  color: var(--c-blue-hi);
  background: var(--c-blue-subtle);
  border: 1px solid rgba(40,64,232,0.2);
}
/* Proof cases */
.proof-cases { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.proof-case {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px;
  background: var(--c-bg-3); border: 1px solid var(--c-border); border-radius: var(--r-md);
  transition: border-color 0.2s;
}
.proof-case:hover { border-color: var(--c-border-md); }
.proof-case__icon { font-size: 1.1rem; flex-shrink: 0; }
.proof-case strong { display: block; font-size: 0.8rem; font-weight: 600; color: var(--c-white-70); margin-bottom: 3px; }
.proof-case p { font-size: 0.78rem; color: var(--c-white-40); line-height: 1.5; font-style: italic; }

/* Responsive */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .demo-wall { grid-template-columns: 1fr 1fr; }
  .demo-card--proof { grid-column: auto; }
}
@media (max-width: 768px) {
  .svc-grid { grid-template-columns: 1fr; }
  .demo-wall { grid-template-columns: 1fr; }
  .svc-card__row { grid-template-columns: 1fr; gap: 8px; }
  .svc-card__bottom { flex-direction: column; align-items: flex-start; }
  .demo-wall__label { flex-direction: column; gap: 8px; }
  .transcript__line { flex-direction: column; gap: 4px; }
  .audio-player__wave { display: none; }
}


/* ============================================================
   RESULTADOS
   ============================================================ */
.resultados {
  padding: var(--sp-xl) 0;
  background: var(--c-bg-1);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}

.resultados::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40,64,232,0.07) 0%, transparent 65%);
  bottom: -200px;
  left: -100px;
  pointer-events: none;
}

.resultados__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.resultados__header { margin-bottom: var(--sp-lg); }

.resultados__title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--c-white);
}

.resultados__title em { font-style: normal; color: var(--c-white-30); }

/* Big metrics row */
.metrics__row {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 40px;
  background: var(--c-bg-2);
}

.metric {
  flex: 1;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}

.metric:hover { background: var(--c-bg-3); }

.metric__top {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.metric__num {
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--c-white);
}

.metric__unit {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-blue-hi);
  line-height: 1;
}

.metric__desc {
  font-size: 0.82rem;
  color: var(--c-white-40);
  line-height: 1.6;
}

.metric__vline {
  width: 1px;
  background: var(--c-border);
  flex-shrink: 0;
}

/* Proof wall */
.proof-wall {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.proof-card {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}

.proof-card:hover {
  border-color: var(--c-border-md);
  transform: translateY(-2px);
}

.proof-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.proof-card__icon { font-size: 1rem; }

.proof-card__label {
  font-family: var(--f-label);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-white-50);
  letter-spacing: 0.04em;
  flex: 1;
}

.proof-card__badge {
  font-family: var(--f-label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-pill);
}

.proof-card__badge--green {
  background: var(--c-green-s);
  color: var(--c-green);
  border: 1px solid rgba(0,194,122,0.25);
}

.proof-card__badge--blue {
  background: var(--c-blue-subtle);
  color: var(--c-blue-hi);
  border: 1px solid rgba(40,64,232,0.2);
}

/* Bars */
.proof-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.proof-bar__label {
  font-size: 0.72rem;
  color: var(--c-white-40);
  width: 110px;
  flex-shrink: 0;
  font-family: var(--f-label);
}

.proof-bar__track {
  flex: 1;
  height: 4px;
  background: var(--c-white-08);
  border-radius: 2px;
  overflow: hidden;
}

.proof-bar__fill {
  height: 100%;
  width: 0;
  background: var(--c-blue);
  border-radius: 2px;
  transition: width 1.5s var(--ease-out);
}

.proof-bar__fill--alt { background: var(--c-green); }
.proof-bar__fill.animated { width: var(--w); }

.proof-bar__val {
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-white-70);
  width: 30px;
  text-align: right;
  flex-shrink: 0;
}

.proof-stat-row {
  display: flex;
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid var(--c-border);
  padding-top: 16px;
}

.proof-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.proof-stat__val {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
}

.proof-stat__lbl {
  font-family: var(--f-label);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--c-white-30);
  letter-spacing: 0.04em;
}

/* Chat card */
.proof-chat { display: flex; flex-direction: column; gap: 8px; }

.chat__msg {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 85%;
}

.chat__msg--user { align-self: flex-end; align-items: flex-end; }

.chat__msg span {
  display: inline-block;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 0.8rem;
  line-height: 1.5;
}

.chat__msg--ai span {
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  color: var(--c-white-80);
  border-bottom-left-radius: 4px;
}

.chat__msg--user span {
  background: var(--c-blue);
  color: var(--c-white);
  border-bottom-right-radius: 4px;
}

.chat__msg--success span {
  background: var(--c-green-s);
  border-color: rgba(0,194,122,0.25);
  color: var(--c-green);
}

.chat__time {
  font-size: 0.62rem;
  color: var(--c-white-20);
  padding: 0 4px;
}

/* Calendar card */
.proof-calendar { display: flex; flex-direction: column; gap: 8px; }

.cal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.cal__header span { font-size: 0.8rem; color: var(--c-white-60); font-family: var(--f-label); }
.cal__count { font-weight: 700; color: var(--c-white); }

.cal__slots { display: flex; flex-direction: column; gap: 6px; }

.cal__slot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  background: var(--c-bg-3);
  border-left: 2px solid var(--c-border-md);
}

.cal__slot--taken { border-left-color: var(--c-blue); }
.cal__slot--ai { border-left-color: var(--c-green); background: var(--c-green-s); }

.slot__time {
  font-family: var(--f-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-white-50);
  width: 36px;
  flex-shrink: 0;
}

.slot__name {
  font-size: 0.72rem;
  color: var(--c-white-60);
}

.cal__slot--ai .slot__name { color: var(--c-green); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos {
  padding: var(--sp-xl) 0;
  position: relative;
  overflow: hidden;
}

.depoimentos__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.depoimentos__header { margin-bottom: var(--sp-lg); }

.depoimentos__title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--c-white);
}

.depoimentos__title em { font-style: normal; color: var(--c-white-30); }

/* Carousel */
.depo-track__wrapper {
  position: relative;
  overflow: hidden;
}

.depo-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s var(--ease);
}

.depo {
  flex: 0 0 calc(50% - 10px);
  background: var(--c-bg-1);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 0.2s;
}

.depo:hover { border-color: var(--c-border-md); }

.depo__quote {
  font-family: var(--f-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--c-blue-hi);
  line-height: 0.7;
  opacity: 0.6;
}

.depo__text {
  font-size: 1rem;
  color: var(--c-white-70);
  line-height: 1.75;
  flex: 1;
  font-style: normal;
}

.depo__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--c-border);
  padding-top: 20px;
}

.depo__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-hi));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-white);
  flex-shrink: 0;
}

.depo__info { flex: 1; }

.depo__info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-white);
}

.depo__info span {
  font-size: 0.78rem;
  color: var(--c-white-40);
}

.depo__stars {
  font-size: 0.8rem;
  color: #f59e0b;
  letter-spacing: 2px;
  flex-shrink: 0;
}

/* Nav */
.depo-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.depo-nav__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--c-border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white-50);
  transition: all 0.2s var(--ease);
}

.depo-nav__btn:hover {
  border-color: var(--c-border-hi);
  color: var(--c-white);
  background: var(--c-white-04);
}

.depo-nav__dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.depo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-white-20);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
  padding: 0;
}

.depo-dot.is-active {
  background: var(--c-blue-hi);
  width: 20px;
  border-radius: 3px;
}

/* ============================================================
   PROCESSO
   ============================================================ */
.processo {
  padding: var(--sp-xl) 0;
  background: var(--c-bg-1);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.processo__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.processo__header .eyebrow { margin-bottom: var(--sp-sm); }

.processo__title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--c-white);
}

.processo__title em { font-style: normal; color: var(--c-white-30); }

.processo__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pstep {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
}

.pstep:last-child { padding-bottom: 0; }

.pstep__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.pstep__num {
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--c-white-20);
  letter-spacing: 0.06em;
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}

.pstep:hover .pstep__num {
  border-color: var(--c-blue);
  color: var(--c-blue-hi);
}

.pstep__line {
  width: 1px;
  flex: 1;
  background: var(--c-border);
  margin-top: 8px;
  min-height: 32px;
}

.pstep__content {
  padding-top: 8px;
  flex: 1;
}

.pstep__content h3 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-white-80);
  margin-bottom: 8px;
}

.pstep__content p {
  font-size: 0.9rem;
  color: var(--c-white-40);
  line-height: 1.7;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  padding: var(--sp-xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40,64,232,0.08) 0%, transparent 65%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.cta-final__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.cta-final__title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--c-white);
  margin-bottom: 24px;
}

.cta-final__title em { font-style: normal; color: var(--c-white-30); }

.cta-final__sub {
  font-size: 0.95rem;
  color: var(--c-white-50);
  line-height: 1.75;
  margin-bottom: 32px;
}

.cta-final__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--c-white-50);
}

.trust__item svg { color: var(--c-green); flex-shrink: 0; }

.cta-final__insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-label);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-white-30);
  transition: color 0.2s;
  border: 1px solid var(--c-border);
  padding: 8px 16px;
  border-radius: var(--r-pill);
}

.cta-final__insta:hover { color: var(--c-white); border-color: var(--c-border-md); }

/* Form */
.form {
  background: var(--c-bg-1);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 40px;
}

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

.form__field { display: flex; flex-direction: column; gap: 7px; }

.form__label {
  font-family: var(--f-label);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-white-40);
  letter-spacing: 0.03em;
}

.form__optional { color: var(--c-white-25); font-weight: 400; }

.form__input,
.form__select,
.form__textarea {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 12px 16px;
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: 0.9rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 16px;
  -webkit-appearance: none;
}

.form__input::placeholder,
.form__textarea::placeholder { color: var(--c-white-20); }

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(40,64,232,0.12);
}

.form__select { color: var(--c-white-70); }
.form__select option { background: var(--c-bg-2); color: var(--c-white); }

.form__textarea { resize: vertical; min-height: 96px; margin-bottom: 20px; }

.form__disclaimer {
  font-size: 0.72rem;
  color: var(--c-white-25);
  text-align: center;
  margin-top: 12px;
}

/* Success */
.form__success {
  background: var(--c-bg-1);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 60px 40px;
  text-align: center;
}

.success__icon {
  width: 56px;
  height: 56px;
  background: var(--c-green-s);
  border: 1px solid rgba(0,194,122,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--c-green);
  margin: 0 auto 20px;
}

.form__success h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.form__success p {
  font-size: 0.9rem;
  color: var(--c-white-50);
  line-height: 1.7;
}

.form__success a { color: var(--c-blue-hi); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--c-border);
  background: var(--c-bg);
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 32px 32px;
}

.footer__top {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer__tagline {
  flex: 1;
  font-size: 0.82rem;
  color: var(--c-white-30);
  line-height: 1.6;
}

.footer__instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-label);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-white-30);
  border: 1px solid var(--c-border);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  transition: all 0.2s;
  flex-shrink: 0;
}

.footer__instagram:hover { color: var(--c-white); border-color: var(--c-border-md); }

.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--c-border);
  padding: 24px 0;
}

.footer__links a {
  font-size: 0.82rem;
  color: var(--c-white-30);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--c-white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom span {
  font-size: 0.75rem;
  color: var(--c-white-20);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal="left"] { transform: translateX(-24px); }
[data-reveal="right"] { transform: translateX(24px); }
[data-reveal="fade"] { transform: none; }

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --sp-xl: 80px; --sp-lg: 48px; }

  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__text { flex-direction: column; gap: 32px; }
  .hero__right { max-width: 100%; }
  .hero__actions { flex-direction: row; }

  .vsl__inner { grid-template-columns: 1fr; gap: 48px; }
  .vsl__header { max-width: 100%; }

  .proof-wall { grid-template-columns: 1fr 1fr; }
  .proof-card--wide { grid-column: 1 / -1; }

  .metrics__row { flex-wrap: wrap; }
  .hero__indicators { grid-template-columns: repeat(2, 1fr); }
  .hero__ind { border-bottom: 1px solid var(--c-border); }
  .hero__ind:nth-child(2) { border-right: none; }
  .hero__ind:nth-child(4) { border-right: none; border-bottom: none; }
  .hero__ind:nth-child(3) { border-bottom: none; }
  .metric { min-width: calc(50% - 1px); }
  .metric__vline:nth-child(4) { display: none; }

  .processo__inner { grid-template-columns: 1fr; gap: 48px; }

  .cta-final__inner { grid-template-columns: 1fr; gap: 48px; }

  .depo { flex: 0 0 calc(80% - 10px); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --sp-xl: 64px; --sp-lg: 40px; }

  .nav__inner { padding: 18px 20px; }

  .hero__inner { padding: 100px 20px 0; }
  .hero__topbar { flex-wrap: wrap; gap: 8px; }
  .hero__title { font-size: clamp(2rem, 7vw, 3.2rem); }
  .hero__actions { flex-direction: column; }
  .hero__indicators { grid-template-columns: repeat(2, 1fr); }
  .hero__ind { border-bottom: 1px solid var(--c-border); padding: 20px 16px; }
  .hero__ind:nth-child(2) { border-right: none; }
  .hero__ind:nth-child(3) { border-bottom: none; }
  .hero__ind:nth-child(4) { border-right: none; border-bottom: none; }

  .vsl__inner { padding: 0 20px; }

  .servicos__inner { padding: 0 20px; }
  .svc__head { gap: 14px; }
  .svc__body { padding-left: 42px; }
  .svc__tag { display: none; }

  .resultados__inner { padding: 0 20px; }
  .metrics__row { flex-direction: column; border-radius: var(--r-lg); }
  .metric { min-width: 100%; padding: 28px 24px; }
  .metric__vline { height: 1px; width: auto; }
  .metric__num { font-size: 3.5rem; }

  .proof-wall { grid-template-columns: 1fr; padding: 0 20px; }
  .proof-wall { padding: 0; }

  .depoimentos__inner { padding: 0 20px; }
  .depo { flex: 0 0 calc(90% - 10px); padding: 28px; }

  .processo__inner { padding: 0 20px; }

  .cta-final__inner { padding: 0 20px; }
  .form { padding: 24px 20px; }
  .form__row { grid-template-columns: 1fr; }

  .footer__inner { padding: 40px 20px 24px; }
  .footer__top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 6px; }

  .mobile-menu { padding: 40px 20px; }
  .mobile-menu__link { font-size: 1.6rem; }
}

/* ============================================================
   RESPONSIVE — SMALL (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero__title { font-size: clamp(1.7rem, 7.5vw, 2.4rem); }
  .hero__ind { padding: 16px 12px; }
  .ind__num { font-size: 1.8rem; }
  .ind__title { font-size: 0.8rem; }
  .ind__desc { font-size: 0.72rem; }
  .hero__right { padding-bottom: 0; }
  .metrics__row { border-radius: var(--r-md); }
  .depo { flex: 0 0 calc(95% - 10px); }
  .depo__text { font-size: 0.9rem; }
  .vsl__proof-strip { flex-direction: column; gap: 10px; align-items: flex-start; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.c-white-25 { color: rgba(255,255,255,0.25); }
.c-white-60 { color: rgba(255,255,255,0.6); }
.c-white-80 { color: rgba(255,255,255,0.8); }
.c-white-40 { color: rgba(255,255,255,0.4); }
