:root {
  --bg: #121212;
  --bg-2: #121212;
  --bg-3: #120a24;
  --ink: #ffffff;
  --ink-2: rgba(255, 255, 255, 0.72);
  --ink-3: rgba(255, 255, 255, 0.5);
  --ink-4: rgba(255, 255, 255, 0.3);
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --accent: #8841e5;
  --accent-2: #a66bf0;
  --accent-3: #c9aefc;
  --good: #5fe36a;
  --whatsapp: #25d366;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Sora", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
video {
  max-width: 100%;
  display: block;
}

/* ===== LOADER / WELCOME SCREEN ===== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}
.loader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 40%,
      rgba(136, 65, 229, 0.25),
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(166, 107, 240, 0.15),
      transparent 55%
    );
  opacity: 0;
  animation: loader-bg 1.4s 0.1s var(--ease) forwards;
}
@keyframes loader-bg {
  to {
    opacity: 1;
  }
}
.loader-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.loader-hi {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-3);
  opacity: 0;
  transform: translateY(8px);
  animation: loader-fade 0.6s 0.2s var(--ease) forwards;
}
.loader-welcome {
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--ink);
  letter-spacing: -0.01em;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  animation: loader-fade 0.7s 0.9s var(--ease) forwards;
}
.loader-logo {
  opacity: 0;
  transform: translateY(18px) scale(0.94);
  animation: loader-fade 1s 1.6s var(--ease) forwards;
  display: flex;
  justify-content: center;
  margin-top: 4px;
}
.loader-logo img {
  height: clamp(84px, 13vw, 140px);
  width: auto;
  display: block;
}
.loader-bar {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 20px;
  opacity: 0;
  animation: loader-fade 0.5s 2.5s var(--ease) forwards;
}
.loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-2),
    var(--accent-3)
  );
  border-radius: inherit;
  animation: loader-progress 2.2s 2.55s var(--ease) forwards;
}
@keyframes loader-fade {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes loader-progress {
  to {
    width: 100%;
  }
}

/* reveal body content only after loader done */
.app {
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.app.in {
  opacity: 1;
}

/* ===== AMBIENT + CURSOR ===== */
.ambient {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.ambient .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}
.ambient .b1 {
  top: -220px;
  left: -160px;
  width: 620px;
  height: 620px;
  background: radial-gradient(
    circle,
    rgba(136, 65, 229, 0.55),
    transparent 60%
  );
}
.ambient .b2 {
  top: 45%;
  right: -220px;
  width: 680px;
  height: 680px;
  background: radial-gradient(
    circle,
    rgba(166, 107, 240, 0.35),
    transparent 60%
  );
}
.ambient .b3 {
  bottom: -220px;
  left: 30%;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(201, 174, 252, 0.14),
    transparent 60%
  );
}
.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(136, 65, 229, 0.28),
    transparent 65%
  );
  filter: blur(42px);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: transform 0.14s ease-out;
  mix-blend-mode: screen;
}

.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}

/* ===== TOP TICKER ===== */
.scarcity-bar {
  background: linear-gradient(90deg, #0a0612 0%, #1a0f33 50%, #0a0612 100%);
  border-bottom: 1px solid rgba(166, 107, 240, 0.2);
  padding: 10px 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--accent-3);
  position: relative;
  z-index: 52;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), inset 0 -1px 0 rgba(166, 107, 240, 0.12);
}
.scarcity-bar b {
  color: #fff;
}
.scarcity-bar .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 10px var(--accent-2);
  margin-right: 8px;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(10, 6, 18, 0.7);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: inline-flex;
  align-items: center;
  color: #fff;
  transition: opacity 0.25s;
}
.logo img {
  height: 32px;
  width: auto;
  display: block;
}
.logo:hover {
  opacity: 0.8;
}
.foot-brand .logo img {
  height: 40px;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 13px;
  color: var(--ink-2);
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--accent-2);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover {
  color: #fff;
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s,
    border-color 0.3s, color 0.3s;
  border: 1px solid transparent;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  padding: 11px 20px;
  font-size: 13px;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease);
}
.btn:hover .ico.arrow {
  transform: translateX(4px);
}
.btn:hover .ico.arrow.arrow-down {
  transform: translateY(4px);
}
.ico.arrow.arrow-down {
  animation: arrow-bounce 2s ease-in-out infinite;
}
@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(3px); }
}
.btn:hover .ico.calendar {
  transform: rotate(-8deg) scale(1.1);
}
.btn:hover .ico.external {
  transform: translate(3px, -3px);
}

.btn.sm {
  padding: 8px 14px;
  font-size: 12px;
  border-radius: 10px;
  gap: 6px;
}
.btn.lg {
  padding: 14px 26px;
  font-size: 14px;
  border-radius: 14px;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #6a2ec0);
  color: #fff;
  border-color: rgba(166, 107, 240, 0.55);
  box-shadow: 0 8px 26px rgba(136, 65, 229, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn.primary:hover {
  box-shadow: 0 14px 40px rgba(136, 65, 229, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-color: var(--line-2);
  backdrop-filter: blur(14px);
}
.btn.secondary:hover {
  background: rgba(136, 65, 229, 0.14);
  border-color: var(--accent-2);
}

.btn.tertiary {
  background: transparent;
  color: var(--ink-2);
  border-color: transparent;
  padding-left: 4px;
  padding-right: 4px;
}
.btn.tertiary:hover {
  color: var(--accent-3);
  transform: translateX(2px);
}

.pill-ghost {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-2);
  font-size: 12px;
  backdrop-filter: blur(8px);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-family: inherit;
}
.pill-ghost:hover {
  background: rgba(136, 65, 229, 0.15);
  border-color: var(--accent-2);
  transform: translateY(-1px);
}

/* ===== TOOLTIPS ===== */
[data-tip] {
  position: relative;
}
[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(18, 10, 36, 0.96);
  border: 1px solid var(--accent-2);
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.22s var(--ease);
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
[data-tip]::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--accent-2);
  opacity: 0;
  transition: opacity 0.22s;
  z-index: 100;
  pointer-events: none;
}
[data-tip]:hover::after,
[data-tip]:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
[data-tip-below]::after {
  bottom: auto;
  top: calc(100% + 10px);
}
[data-tip-below]::before {
  bottom: auto;
  top: calc(100% + 5px);
  border-top-color: transparent;
  border-bottom-color: var(--accent-2);
}
[data-tip-left]::after {
  bottom: 50%;
  top: auto;
  left: auto;
  right: calc(100% + 10px);
  transform: translateY(50%) translateX(4px);
}
[data-tip-left]:hover::after {
  transform: translateY(50%) translateX(0);
}
[data-tip-left]::before {
  display: none;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}
.reveal.d4 {
  transition-delay: 0.32s;
}
.reveal.d5 {
  transition-delay: 0.4s;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s, transform 0.8s var(--ease);
}
.reveal-left.in {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s var(--ease);
}
.reveal-right.in {
  opacity: 1;
  transform: translateX(0);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 34px - 78px);
  padding: 100px 0 140px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  text-align: center;
}
.hero-content .eyebrow,
.hero-content .ctas,
.hero-content .proof-row {
  justify-content: center;
}
.hero-content .sub {
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media video,
.hero-media .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media video {
  z-index: 1;
  opacity: 0;
  transition: opacity 1s var(--ease);
  filter: saturate(0.9) brightness(0.9);
  mix-blend-mode: screen;
}
.hero-media video.is-ready {
  opacity: 0.4;
}
.hero-media .hero-fallback {
  z-index: 0;
}
.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 35%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(18, 18, 18, 0.5) 50%,
    var(--bg) 100%
  );
}

.hero-fallback {
  background: radial-gradient(
      ellipse at 20% 30%,
      rgba(136, 65, 229, 0.6),
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 60%,
      rgba(166, 107, 240, 0.45),
      transparent 55%
    ),
    radial-gradient(
      ellipse at 50% 80%,
      rgba(201, 174, 252, 0.25),
      transparent 60%
    ),
    linear-gradient(180deg, #0a0612, #120a24);
  animation: hero-drift 22s ease-in-out infinite alternate;
}
@keyframes hero-drift {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
  100% {
    background-position: 15% 10%, -12% 8%, 8% -12%, 0% 0%;
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(10, 6, 18, 0.35) 0%,
      rgba(10, 6, 18, 0.55) 50%,
      rgba(10, 6, 18, 0.9) 100%
    ),
    radial-gradient(
      ellipse at center,
      transparent 20%,
      rgba(10, 6, 18, 0.4) 80%
    );
  z-index: 1;
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 2px,
    rgba(255, 255, 255, 0.02) 2px 3px
  );
  mix-blend-mode: overlay;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(136, 65, 229, 0.12);
  border: 1px solid rgba(166, 107, 240, 0.35);
  backdrop-filter: blur(10px);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--accent-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.eyebrow .g {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 12px var(--good);
  animation: pulse 2s ease-in-out infinite;
}

.headline {
  font-family: "Gochi Hand", cursive;
  font-weight: 400;
  font-size: clamp(44px, 5.6vw, 84px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 24px 0 22px;
  padding: 0.08em 0.06em;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}
.headline .grad,
.headline .bold {
  padding: 0 0.04em;
  display: inline-block;
}
.headline .grad {
  background: linear-gradient(
    135deg,
    var(--accent-3) 0%,
    var(--accent-2) 50%,
    var(--accent) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.headline .bold {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 0.68em;
  letter-spacing: -0.03em;
  display: inline-block;
  padding: 0;
  color: #fff;
}

.sub {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 58ch;
  margin: 0 0 32px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-services {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.hs-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-right: 6px;
}
.hero-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.hero-services li a {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 500;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.hero-services li a:hover {
  color: #fff;
  border-color: var(--accent-2);
  background: rgba(136, 65, 229, 0.12);
  transform: translateY(-1px);
}

.proof-row {
  display: flex;
  gap: 44px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  justify-content: center;
}
.proof-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.proof-lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-hint .line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--accent-2), transparent);
  animation: scroll-tick 2.2s ease-in-out infinite;
}
@keyframes scroll-tick {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ===== SHARED SECTION ===== */
section.sx {
  padding: 96px 0;
  position: relative;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}
.section-head .left {
  max-width: 660px;
}
.section-kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent-2);
}
.section-title {
  font-family: "Gochi Hand", cursive;
  font-weight: 400;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  padding: 0.05em 0.04em;
}
.section-title .grad,
.section-title .bold {
  padding: 0 0.04em;
  display: inline-block;
}
.section-title .grad {
  background: linear-gradient(
    135deg,
    var(--accent-3),
    var(--accent-2),
    var(--accent)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.section-title .bold {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 0.6em;
  letter-spacing: -0.03em;
  display: inline-block;
  padding: 0;
  color: #fff;
}
.section-lead {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 22px 0 0;
  max-width: 56ch;
}

.section-head.center {
  justify-content: center;
  text-align: center;
}
.section-head.center .left {
  max-width: 720px;
  margin: 0 auto;
}
.section-head.center .section-kicker {
  justify-content: center;
}
.section-head.center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ===== SCARCITY (minimal redesign) ===== */
.scarcity-band {
  padding: 96px 0;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.scarcity-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(136, 65, 229, 0.08),
    transparent 60%
  );
  pointer-events: none;
}
.scarcity-minimal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr minmax(260px, 320px);
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.scar-num-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.scar-num {
  font-family: "Gochi Hand", cursive;
  font-size: clamp(120px, 13vw, 188px);
  line-height: 0.88;
  background: linear-gradient(
    135deg,
    #fff 0%,
    var(--accent-3) 55%,
    var(--accent) 110%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  padding: 0.02em 0.02em;
}
.scar-num-lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-left: 4px;
}
.scarcity-lead h3 {
  margin: 0 0 16px;
  font-size: clamp(24px, 2.1vw, 32px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.22;
  max-width: 22ch;
}
.scarcity-lead h3 b {
  font-weight: 700;
  color: var(--accent-3);
}
.scarcity-lead p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 44ch;
}
.scarcity-lead .kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.scarcity-lead .kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent-2);
}
.scarcity-windows {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 1px solid var(--line);
  padding-left: 32px;
}
.win {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s var(--ease);
}
.win:last-child {
  border-bottom: 0;
}
.win:hover {
  padding-left: 4px;
}
.win-month {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  font-weight: 600;
}
.win-dots {
  display: flex;
  gap: 6px;
}
.win-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: transform 0.25s;
  cursor: help;
}
.win-dot:hover {
  transform: scale(1.3);
}
.win-dot.open {
  background: var(--accent-2);
  box-shadow: 0 0 12px rgba(166, 107, 240, 0.7);
  animation: pulse-free 2.4s ease-in-out infinite;
}
.win-dot.taken {
  background: transparent;
  border: 1.5px solid var(--ink-4);
}
.win-dot.soon {
  background: transparent;
  border: 1.5px dashed var(--ink-4);
}
@keyframes pulse-free {
  0%,
  100% {
    box-shadow: 0 0 12px rgba(166, 107, 240, 0.7);
  }
  50% {
    box-shadow: 0 0 22px rgba(166, 107, 240, 1);
  }
}
.win-status {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: right;
}
.win-status.ok {
  color: var(--accent-3);
}
.win.muted .win-month,
.win.muted .win-status {
  color: var(--ink-4);
}
.win.is-current {
  position: relative;
}
.win.is-current::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 22px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(166, 107, 240, 0.55);
}
.win.is-current .win-month {
  color: #fff;
}
.win-now-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(136, 65, 229, 0.18);
  border: 1px solid rgba(166, 107, 240, 0.35);
  color: var(--accent-3);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* ===== COUNTRIES ===== */
.countries {
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.01);
}
.countries-inner {
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 56px;
  align-items: center;
}
.countries-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.55;
}
.countries-label b {
  color: #fff;
}
.countries-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.country-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease);
}
.country-chip:hover {
  transform: translateY(-3px);
  border-color: var(--accent-2);
  background: rgba(136, 65, 229, 0.08);
}
.country-flag {
  font-size: 22px;
}
.country-name {
  font-weight: 600;
  font-size: 13px;
}
.country-sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.partner-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px dashed var(--line);
  flex-wrap: wrap;
}
.partner-badge {
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(136, 65, 229, 0.12);
  border: 1px solid rgba(166, 107, 240, 0.35);
  color: var(--accent-3);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.partner-text {
  font-size: 13px;
  color: var(--ink-2);
}

/* ===== CLIENTES ===== */
.clientes {
  border-bottom: 1px solid var(--line);
}
.clientes-sub {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 18px auto 0;
  max-width: 620px;
}
.clientes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
}
.cliente-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
  min-height: 130px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
  position: relative;
}
.cliente-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(136, 65, 229, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.cliente-logo:hover {
  background: rgba(136, 65, 229, 0.04);
}
.cliente-logo:hover::before {
  opacity: 1;
}
.cliente-logo img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.62;
  filter: grayscale(1) brightness(1.1);
  transition: opacity 0.35s var(--ease), filter 0.35s var(--ease), transform 0.35s var(--ease);
}
.cliente-logo:hover img {
  opacity: 1;
  filter: grayscale(0) brightness(1);
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .clientes-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .clientes-grid { grid-template-columns: repeat(3, 1fr); }
  .cliente-logo { padding: 28px 20px; min-height: 110px; }
  .cliente-logo img { max-height: 44px; }
}
@media (max-width: 480px) {
  .clientes-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== DOR ===== */
.dor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dor-card {
  padding: 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.dor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(136, 65, 229, 0.12),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s;
}
.dor-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-2);
}
.dor-card:hover::before {
  opacity: 1;
}
.dor-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--accent-3);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
  opacity: 0.75;
}
.dor-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px;
}
.dor-text {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.dor-quote {
  font-style: italic;
  color: var(--ink-3);
  font-size: 13px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}

.dor-solution {
  margin-top: 48px;
  padding: 32px 40px;
  border-radius: 20px;
  background: rgba(136, 65, 229, 0.08);
  border: 1px solid rgba(166, 107, 240, 0.28);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  backdrop-filter: blur(10px);
}
.dor-solution-icon {
  font-family: "Gochi Hand", cursive;
  font-size: 72px;
  color: var(--accent-3);
  line-height: 1;
}
.dor-solution h4 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
}
.dor-solution p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  max-width: 60ch;
}

/* ===== SERVIÇOS ===== */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.srv-card {
  padding: 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.srv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(136, 65, 229, 0.16),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.srv-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-2);
}
.srv-card:hover::before {
  opacity: 1;
}
.srv-card.featured {
  background: linear-gradient(
    135deg,
    rgba(136, 65, 229, 0.14),
    rgba(255, 255, 255, 0.02)
  );
  border-color: rgba(166, 107, 240, 0.35);
}
.srv-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(136, 65, 229, 0.16);
  border: 1px solid rgba(166, 107, 240, 0.4);
  color: var(--accent-3);
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  align-self: flex-start;
}
.srv-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.srv-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  margin-bottom: 4px;
}
.srv-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  margin: 4px 0 10px;
  letter-spacing: -0.01em;
}
.srv-sub {
  font-family: "Gochi Hand", cursive;
  color: var(--accent-3);
  font-size: 20px;
  margin: 0 0 18px;
}
.srv-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.srv-meta .meta-item {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--ink-2);
}
.srv-meta .meta-lbl {
  color: var(--ink-3);
  margin-right: 6px;
}
.srv-price {
  font-weight: 700;
  color: #fff;
  font-size: 13px;
}
.srv-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}
.srv-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.srv-list li::before {
  content: "→";
  color: var(--accent-2);
  font-weight: 700;
  flex-shrink: 0;
}
.srv-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-3);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-top: 1px dashed var(--line);
  padding-top: 18px;
  cursor: pointer;
  transition: gap 0.25s, color 0.25s;
}
.srv-cta:hover {
  gap: 14px;
  color: #fff;
}

/* ===== PROJETOS ===== */
/* ===== PROJETOS CARROSSEL ===== */
.proj-carousel {
  position: relative;
  margin-bottom: 28px;
}
.proj-track {
  --wrap-pad: calc(max(0px, (100vw - 1440px) / 2) + 48px);
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--wrap-pad);
  padding: 20px var(--wrap-pad);
  scrollbar-width: none;
  outline: none;
}
.proj-track::-webkit-scrollbar { display: none; }
.proj-card {
  position: relative;
  flex: 0 0 min(560px, 82vw);
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), border-color 0.35s, box-shadow 0.45s var(--ease);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.proj-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-2);
  box-shadow: 0 40px 100px rgba(136, 65, 229, 0.28);
}
.proj-card-link {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  color: inherit;
}
.proj-card-img {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2a1a4a 0%, #1a0e36 60%, #120a24 100%);
  overflow: hidden;
}
.proj-card-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(166, 107, 240, 0.28), transparent 55%);
}
.proj-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 24px, rgba(255, 255, 255, 0.03) 24px 25px);
}
.proj-idx {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #fff;
  z-index: 3;
  font-weight: 600;
}
.proj-idx-dim {
  color: var(--ink-3);
  font-weight: 400;
}
.proj-img-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink-2);
  font-family: "Gochi Hand", cursive;
  font-size: clamp(28px, 3vw, 44px);
  text-align: center;
  padding: 24px;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
}
.proj-tags {
  position: absolute;
  top: 18px;
  left: 22px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 2;
}
.proj-tag {
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(8px);
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.proj-card-body {
  padding: 22px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.proj-meta {
  display: flex;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.proj-meta-sep { opacity: 0.5; }
.proj-name {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: #fff;
}
.proj-result {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-3);
  font-family: "Gochi Hand", cursive;
  font-size: 22px;
  align-self: flex-start;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: rgba(136, 65, 229, 0.1);
  border: 1px solid rgba(166, 107, 240, 0.25);
  margin: 2px 0 4px;
}
.proj-result-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 1.8s ease-in-out infinite;
}
.proj-desc {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.proj-cta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-3);
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease);
}
.proj-card:hover .proj-cta {
  gap: 12px;
}
.proj-card:hover .proj-cta .ico.arrow {
  transform: translateX(2px);
}

/* controls */
.proj-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.proj-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.proj-dot {
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: var(--line-2);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.proj-dot:hover { background: var(--ink-3); }
.proj-dot.is-active {
  width: 40px;
  background: var(--accent-2);
  box-shadow: 0 0 10px rgba(166, 107, 240, 0.5);
}
.proj-counter {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
}
.proj-counter #projCurrent { color: #fff; font-weight: 600; }
.proj-nav {
  display: flex;
  gap: 10px;
}
.proj-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.proj-nav-btn svg { width: 18px; height: 18px; }
.proj-nav-btn:hover:not(:disabled) {
  background: rgba(136, 65, 229, 0.15);
  border-color: var(--accent-2);
  color: #fff;
  transform: translateY(-2px);
}
.proj-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .proj-card { flex: 0 0 88vw; }
  .proj-card-body { padding: 22px 22px 24px; }
  .proj-controls { justify-content: center; }
}

/* ===== PROCESSO ===== */
.processo-wrap {
  position: relative;
}
.processo-line {
  position: absolute;
  left: 50%;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--accent-2),
    var(--accent-2),
    transparent
  );
  transform: translateX(-50%);
}
.proc-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}
.proc-step:last-child {
  margin-bottom: 0;
}
.proc-card {
  padding: 28px 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: all 0.35s var(--ease);
}
.proc-card:hover {
  border-color: var(--accent-2);
  transform: translateY(-3px);
}
.proc-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.proc-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(136, 65, 229, 0.22),
    rgba(18, 10, 36, 0.9)
  );
  border: 2px solid var(--accent-2);
  display: grid;
  place-items: center;
  font-family: "Gochi Hand", cursive;
  font-size: 32px;
  color: var(--accent-3);
  box-shadow: 0 0 30px rgba(136, 65, 229, 0.35);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  transition: transform 0.35s var(--ease);
}
.proc-step:hover .proc-num {
  transform: scale(1.06);
}
.proc-dur {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.proc-step.r .proc-card {
  grid-column: 1;
  text-align: right;
}
.proc-step.r .proc-num-wrap {
  grid-column: 2;
}
.proc-step.l .proc-num-wrap {
  grid-column: 2;
}
.proc-step.l .proc-card {
  grid-column: 3;
}
.proc-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  color: var(--accent-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.proc-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.proc-text {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.proc-deliverable {
  font-size: 12px;
  color: var(--accent-3);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-family: "JetBrains Mono", monospace;
}

/* ===== DIFERENCIAL ===== */
.dif-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: center;
}
.dif-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.dif-tool {
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  transition: all 0.35s var(--ease);
}
.dif-tool:hover {
  background: rgba(136, 65, 229, 0.1);
  border-color: var(--accent-2);
  transform: translateY(-4px);
}
.dif-tool-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #6a2ec0);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: "JetBrains Mono", monospace;
  color: #fff;
  margin-bottom: 14px;
  font-size: 14px;
}
.dif-tool-logo.tool-figma {
  background: linear-gradient(135deg, #f24e1e, #a259ff);
}
.dif-tool-logo.tool-fp {
  background: linear-gradient(135deg, #1273eb, #0066ff);
  color: #fff;
}
.dif-tool-logo.tool-vid {
  background: linear-gradient(135deg, #ff0050, #8841e5);
  color: #fff;
}
.dif-tool-name {
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 4px;
}
.dif-tool-role {
  color: var(--ink-3);
  font-size: 11px;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.dif-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 18px;
}
.dif-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.dif-points .chk {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
}
.dif-points b {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.dif-points span {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.55;
}

/* ===== SOBRE ===== */
.sobre-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
}
.sobre-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 22px;
  overflow: hidden;
  transform: rotate(-1.5deg);
  background: linear-gradient(135deg, #2a1a4a, #120a24);
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transition: transform 0.6s var(--ease);
}
.sobre-img-wrap:hover {
  transform: rotate(0deg) scale(1.01);
}
.sobre-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0 22px,
    rgba(255, 255, 255, 0.035) 22px 23px
  );
}
.sobre-img-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink-3);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 24px;
}
.sobre-sticker {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(22px);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Gochi Hand", cursive;
  font-size: 20px;
  line-height: 1.05;
  text-align: center;
  transform: rotate(8deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  padding: 20px;
  z-index: 2;
}
.sobre p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0 0 18px;
}
.sobre p b {
  color: #fff;
}
.sobre-title {
  margin-bottom: 24px;
}
.sobre-sign {
  margin-top: 32px;
  display: flex;
  gap: 18px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
  flex-wrap: wrap;
}
.sobre-sign-name {
  font-family: "Gochi Hand", cursive;
  font-size: 28px;
  color: var(--accent-3);
}
.sobre-sign-sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.sobre-linkedin {
  margin-left: auto;
}

/* ===== DEPOIMENTOS ===== */
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dep-card {
  padding: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  transition: all 0.35s var(--ease);
  position: relative;
}
.dep-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-2);
}
.dep-card.tall {
  grid-row: span 2;
  background: linear-gradient(
    135deg,
    rgba(136, 65, 229, 0.12),
    rgba(255, 255, 255, 0.02)
  );
  border-color: rgba(166, 107, 240, 0.28);
}
.dep-quote-mark {
  font-family: "Gochi Hand", cursive;
  font-size: 64px;
  color: var(--accent-2);
  line-height: 0.5;
  margin-bottom: 16px;
  opacity: 0.75;
}
.dep-text {
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px;
  font-style: italic;
}
.dep-card.tall .dep-text {
  font-size: 18px;
}
.dep-who {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.dep-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  font-size: 16px;
}
.dep-avatar.avatar-a {
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
}
.dep-avatar.avatar-b {
  background: linear-gradient(135deg, #6a2ec0, var(--accent-2));
}
.dep-avatar.avatar-c {
  background: linear-gradient(135deg, var(--accent-2), #3a1960);
}
.dep-name {
  font-weight: 600;
  font-size: 14px;
}
.dep-role {
  font-size: 12px;
  color: var(--ink-3);
  font-family: "JetBrains Mono", monospace;
}
.dep-stars {
  color: var(--accent-3);
  font-size: 12px;
  margin-top: 3px;
  letter-spacing: 0.05em;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.price-card {
  padding: 28px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease);
  position: relative;
}
.price-card:hover {
  border-color: var(--accent-2);
  transform: translateY(-4px);
}
.price-card.feat {
  background: linear-gradient(
    180deg,
    rgba(136, 65, 229, 0.2),
    rgba(136, 65, 229, 0.04)
  );
  border-color: var(--accent);
  transform: scale(1.03);
  box-shadow: 0 30px 70px rgba(136, 65, 229, 0.25);
}
.price-card.feat:hover {
  transform: scale(1.03) translateY(-4px);
}
.price-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(136, 65, 229, 0.5);
}
.price-name {
  font-family: "Gochi Hand", cursive;
  font-size: 28px;
  color: var(--accent-3);
  margin: 0 0 6px;
}
.price-desc {
  color: var(--ink-3);
  font-size: 12.5px;
  line-height: 1.5;
  margin: 0 0 22px;
  min-height: 38px;
}
.price-num {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
}
.price-num b {
  font-size: 34px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-family: "Sora", sans-serif;
}
.price-num.has-promo b {
  color: var(--accent-3);
}
.price-promo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.price-promo-badge {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(136, 65, 229, 0.45);
  white-space: nowrap;
}
.price-old {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--ink-3);
  opacity: 0.7;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  margin-top: 2px;
}
.price-card.on-promo {
  border-color: rgba(136, 65, 229, 0.45);
}
.price-prazo {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  color: var(--ink-3);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
  flex-grow: 1;
}
.price-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
}
.price-list li::before {
  content: "✓";
  color: var(--accent-2);
  font-weight: 700;
  flex-shrink: 0;
}
.price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-2);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s var(--ease);
}
.price-cta svg {
  transition: transform 0.3s var(--ease);
}
.price-cta .ico.arrow {
  transition: transform 0.3s var(--ease);
}
.price-cta:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: #25d366;
  color: #fff;
  transform: translateY(-2px);
}
.price-cta:hover svg {
  transform: scale(1.1) rotate(-6deg);
}
.price-cta:hover .ico.arrow {
  transform: translateX(3px);
}
.price-card.feat .price-cta {
  background: linear-gradient(135deg, var(--accent), #6a2ec0);
  border-color: rgba(166, 107, 240, 0.55);
  box-shadow: 0 8px 24px rgba(136, 65, 229, 0.35);
}
.price-card.feat .price-cta:hover {
  background: linear-gradient(135deg, #25d366, #1ca853);
  border-color: #25d366;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

/* ===== PAY STRIP ===== */
.pay-strip {
  margin-top: 40px;
  padding: 36px 32px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(136, 65, 229, 0.08), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line-2);
  position: relative;
  overflow: hidden;
}
.pay-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(166, 107, 240, 0.12), transparent 50%);
  pointer-events: none;
}
.pay-strip-head {
  margin-bottom: 28px;
  position: relative;
}
.pay-kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.pay-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent-2);
}
.pay-strip-head h4 {
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  margin: 0;
  color: #fff;
  letter-spacing: -0.01em;
}
.pay-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}
.pay-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.pay-opt:hover {
  background: rgba(136, 65, 229, 0.08);
  border-color: var(--accent-2);
  transform: translateY(-3px);
}
.pay-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(136, 65, 229, 0.14);
  color: var(--accent-3);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.pay-ico svg {
  width: 20px;
  height: 20px;
}
.pay-opt:hover .pay-ico {
  background: var(--accent-2);
  color: #fff;
  transform: scale(1.05) rotate(-4deg);
}
.pay-opt-title {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  line-height: 1.25;
}
.pay-opt-sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-top: 3px;
}
.pay-note {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px dashed var(--line-2);
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-2);
  position: relative;
}
.pay-note b {
  color: var(--accent-3);
}
@media (max-width: 900px) {
  .pay-options { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .pay-options { grid-template-columns: 1fr; }
  .pay-strip { padding: 28px 22px; }
}

/* ===== PÓS-ENTREGA (plano mensal) ===== */
.posentrega {
  padding-top: 40px;
  padding-bottom: 80px;
}
.pos-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 48px;
  padding: 48px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(136, 65, 229, 0.12) 0%, rgba(20, 12, 36, 0.6) 100%);
  border: 1px solid rgba(166, 107, 240, 0.25);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.pos-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(166, 107, 240, 0.22), transparent 60%);
  pointer-events: none;
}
.pos-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-3);
  margin-bottom: 14px;
}
.pos-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent-2);
}
.pos-title {
  font-family: "Gochi Hand", cursive;
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.1;
  margin: 0 0 16px;
  color: #fff;
}
.pos-title .grad {
  background: linear-gradient(135deg, var(--accent-3), var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.pos-sub {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 46ch;
}
.pos-price-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pos-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pos-price-lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-right: 6px;
}
.pos-price b {
  font-family: "Sora", sans-serif;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.pos-price-per {
  color: var(--ink-3);
  font-size: 14px;
  margin-left: 2px;
}
.pos-card .btn.primary svg {
  transition: transform 0.3s var(--ease);
}
.pos-card .btn.primary:hover svg {
  transform: scale(1.1) rotate(-6deg);
}

.pos-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}
.pos-items li {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.pos-items li:hover {
  background: rgba(136, 65, 229, 0.07);
  border-color: var(--accent-2);
  transform: translateY(-2px);
}
.pos-items li.pos-exception {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.015);
  border: 1px dashed var(--line-2);
}
.pos-items li.pos-exception:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.025);
  transform: none;
}
.pos-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(136, 65, 229, 0.14);
  color: var(--accent-3);
  flex-shrink: 0;
}
.pos-ico svg { width: 16px; height: 16px; }
.pos-ico-alt { background: rgba(255, 255, 255, 0.05); color: var(--ink-3); }
.pos-items li > div { display: flex; flex-direction: column; gap: 3px; }
.pos-items li b {
  font-size: 13.5px;
  color: #fff;
  font-weight: 600;
}
.pos-items li span {
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.45;
}

@media (max-width: 960px) {
  .pos-card { grid-template-columns: 1fr; gap: 36px; padding: 36px; }
  .pos-items { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .pos-card { padding: 28px 22px; border-radius: 22px; }
  .pos-items { grid-template-columns: 1fr; }
  .pos-price-row { flex-direction: column; align-items: flex-start; }
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: start;
}
.faq-aside {
  position: sticky;
  top: 132px;
  align-self: start;
}
.faq-aside .section-title {
  font-size: clamp(36px, 4vw, 56px);
}
.faq-lead {
  margin-top: 20px;
}
.wa-link {
  color: var(--accent-3);
  text-decoration: underline;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.faq-item:hover {
  border-color: rgba(166, 107, 240, 0.28);
  background: rgba(255, 255, 255, 0.035);
}
.faq-item[open] {
  border-color: var(--accent-2);
  background: rgba(136, 65, 229, 0.07);
  box-shadow: 0 8px 30px rgba(136, 65, 229, 0.1);
}
.faq-q {
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  transition: color 0.25s;
}
.faq-q:hover {
  color: var(--accent-3);
}
.faq-q::-webkit-details-marker {
  display: none;
}
.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.4s var(--ease);
  background: rgba(136, 65, 229, 0.06);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--accent-2);
  transition: all 0.4s var(--ease);
  border-radius: 2px;
}
.faq-icon::before {
  width: 12px;
  height: 2px;
}
.faq-icon::after {
  width: 2px;
  height: 12px;
}
.faq-item[open] .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(180deg);
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: #fff;
}
.faq-item[open] .faq-icon::after {
  height: 0;
}
.faq-q:hover .faq-icon {
  transform: scale(1.1) rotate(90deg);
  border-color: var(--accent);
  background: rgba(136, 65, 229, 0.18);
}
.faq-item[open] .faq-q:hover .faq-icon {
  transform: rotate(180deg) scale(1.1);
}
.faq-a {
  padding: 0 24px 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.45s var(--ease), opacity 0.3s ease,
    transform 0.45s var(--ease), padding 0.3s ease;
}
.faq-item[open] .faq-a {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  padding: 4px 24px 22px;
  transition-delay: 0.05s;
}

/* ===== CTA FINAL ===== */
.cta-final-wrap {
  padding: 120px 48px;
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(136, 65, 229, 0.22),
    rgba(166, 107, 240, 0.06)
  );
  border: 1px solid rgba(166, 107, 240, 0.35);
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 60px 0;
}
.cta-final-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(136, 65, 229, 0.38),
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 50%,
      rgba(201, 174, 252, 0.18),
      transparent 50%
    );
}
.cta-final-wrap > * {
  position: relative;
  z-index: 2;
}
.cta-final-title {
  font-family: "Gochi Hand", cursive;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.15;
  margin: 0 0 24px;
  padding: 0.06em 0.04em;
}
.cta-final-title .bold {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 0.72em;
  letter-spacing: -0.03em;
  color: #fff;
}
.cta-final-title .grad {
  background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.cta-final-sub {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 54ch;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.cta-final-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-final-micro {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--accent-3);
  margin-top: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
footer {
  position: relative;
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
  margin-top: 60px;
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  inset: -1px 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  opacity: 0.5;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.foot-brand .logo {
  margin-bottom: 16px;
  display: block;
}
.foot-brand p {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.65;
  max-width: 38ch;
  margin: 0 0 20px;
}
.foot-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(136, 65, 229, 0.08);
  border: 1px solid rgba(166, 107, 240, 0.25);
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-3);
  margin-bottom: 22px;
}
.foot-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80;
  animation: pulse 1.8s ease-in-out infinite;
}
.foot-contact {
  display: grid;
  gap: 10px;
  max-width: 360px;
}
.foot-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 13px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.foot-contact-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(136, 65, 229, 0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.foot-contact-item:not(.is-static):hover {
  border-color: var(--accent-2);
  transform: translateY(-2px);
  color: #fff;
}
.foot-contact-item:not(.is-static):hover::before {
  transform: translateX(100%);
}
.fci-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(136, 65, 229, 0.12);
  color: var(--accent-3);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.fci-ico svg {
  width: 16px;
  height: 16px;
}
.foot-contact-item:not(.is-static):hover .fci-ico {
  background: var(--accent-2);
  color: #fff;
  transform: scale(1.05);
}
.fci-label {
  display: grid;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.fci-top {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
}
.fci-value {
  font-size: 13px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fci-hint {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-3);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.foot-contact-item:not(.is-static):hover .fci-hint {
  opacity: 1;
  transform: translateX(0);
}
.foot-contact-item.copied {
  border-color: #4ade80;
}
.foot-contact-item.copied .fci-hint {
  color: #4ade80;
  opacity: 1;
  transform: translateX(0);
}
.foot-contact-item.copied .fci-ico {
  background: #4ade80;
  color: #0a0612;
}

.foot-col h5 {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 18px;
}
.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.foot-col a {
  font-size: 13.5px;
  color: var(--ink-2);
  transition: color 0.25s, padding 0.25s var(--ease);
  display: inline-flex;
  align-items: center;
}
.foot-col a:hover {
  color: #fff;
}
.foot-nav a {
  position: relative;
}
.foot-arrow {
  display: inline-block;
  color: var(--accent-3);
  max-width: 0;
  opacity: 0;
  margin-right: 0;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  transform: translateX(-4px);
}
.foot-nav a:hover .foot-arrow {
  max-width: 20px;
  opacity: 1;
  margin-right: 8px;
  transform: translateX(0);
}
.ext-arrow {
  opacity: 0.6;
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.25s var(--ease);
}
.foot-col a:hover .ext-arrow {
  transform: translate(2px, -2px);
}

.foot-social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.foot-social {
  --b: var(--accent-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  color: var(--ink-2);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.foot-social::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--b), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.foot-social svg {
  width: 22px;
  height: 22px;
  transition: transform 0.35s var(--ease);
  position: relative;
  z-index: 1;
}
.fs-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  transition: color 0.3s;
  position: relative;
  z-index: 1;
}
.foot-social:hover {
  border-color: var(--b);
  color: #fff;
  transform: translateY(-3px);
}
.foot-social:hover::before {
  opacity: 0.18;
}
.foot-social:hover svg {
  transform: scale(1.15) rotate(-4deg);
}
.foot-social:hover .fs-label {
  color: #fff;
}

.foot-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--ink-3);
  flex-wrap: wrap;
  gap: 16px;
  letter-spacing: 0.03em;
}
.foot-bar-left {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.foot-sep {
  opacity: 0.4;
  margin: 0 2px;
}
.foot-bar a {
  transition: color 0.25s;
}
.foot-bar a:hover {
  color: var(--accent-3);
}
.foot-legal {
  display: flex;
  align-items: center;
  gap: 20px;
}
.foot-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink-2);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.foot-top svg {
  width: 13px;
  height: 13px;
  transition: transform 0.3s var(--ease);
}
.foot-top:hover {
  border-color: var(--accent-2);
  background: rgba(136, 65, 229, 0.08);
  color: #fff;
  transform: translateY(-2px);
}
.foot-top:hover svg {
  transform: translateY(-3px);
}

@media (max-width: 960px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; }
  .foot-social-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-bar { flex-direction: column; align-items: flex-start; }
  .foot-legal { flex-wrap: wrap; }
}

/* ===== BOTTOM BAR (full-width) ===== */
.bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  padding: 14px 0;
  background: rgba(10, 6, 18, 0.88);
  backdrop-filter: blur(26px);
  border-top: 1px solid var(--line-2);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s var(--ease), transform 0.55s var(--ease);
}
.bottom-bar.show {
  opacity: 1;
  transform: translateY(0);
}
.bottom-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.bb-status {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-2);
}
.bb-status .pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px var(--accent-2);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.bb-status b {
  color: #fff;
  font-weight: 600;
}
.bb-status .divider {
  width: 1px;
  height: 18px;
  background: var(--line-2);
}
.bb-status .kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-3);
}
.bb-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ===== CHAT WIDGET (Leadster-style) ===== */
.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 58;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}
.chat-widget.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.chat-teaser {
  position: relative;
  width: 320px;
  max-width: calc(100vw - 44px);
  background: linear-gradient(180deg, #1a0f33 0%, #120a24 100%);
  border: 1px solid rgba(166, 107, 240, 0.25);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transform-origin: bottom right;
  animation: chat-teaser-in 0.5s var(--ease) 0.2s both;
}
.chat-teaser.hidden {
  display: none;
}
@keyframes chat-teaser-in {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-teaser::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 22px;
  width: 18px;
  height: 18px;
  background: #120a24;
  border-right: 1px solid rgba(166, 107, 240, 0.25);
  border-bottom: 1px solid rgba(166, 107, 240, 0.25);
  transform: rotate(45deg);
}
.chat-teaser-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 24px;
  height: 24px;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink-2);
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.chat-teaser-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.chat-teaser-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-right: 20px;
}
.chat-avatar {
  position: relative;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.chat-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid rgba(166, 107, 240, 0.4);
}
.chat-online {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4ade80;
  border: 2px solid #120a24;
  box-shadow: 0 0 8px #4ade80;
}
.chat-name {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-2);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}
.chat-status {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.chat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 1.8s ease-in-out infinite;
}
.chat-bubble {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px 14px 14px 4px;
  padding: 12px 14px;
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 14px;
}
.chat-teaser-cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #25d366 0%, #1ca853 100%);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.3s var(--ease);
}
.chat-teaser-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

/* FAB */
.chat-fab {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: linear-gradient(135deg, #25d366, #1ca853);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  overflow: visible;
  transition: transform 0.3s var(--ease);
}
.chat-fab:hover {
  transform: translateY(-3px) scale(1.05);
}
.chat-fab-photo {
  position: absolute;
  inset: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid #fff;
}
.chat-fab-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #ff3b3b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0a0612;
  box-shadow: 0 2px 10px rgba(255, 59, 59, 0.5);
  font-family: "Sora", sans-serif;
}
.chat-fab-badge.hidden { display: none; }
.chat-fab-online {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #4ade80;
  border: 3px solid #0a0612;
  box-shadow: 0 0 10px #4ade80;
}
.chat-fab-ripple {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0;
  animation: chat-ripple 2.6s ease-out infinite;
}
@keyframes chat-ripple {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (max-width: 560px) {
  .chat-widget { right: 14px; bottom: 84px; }
  .chat-teaser { width: 280px; padding: 16px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1120px) {
  .nav-links {
    display: none;
  }
}
@media (max-width: 900px) {
  .wrap {
    padding: 0 20px;
  }
  .hero {
    padding: 72px 0 120px;
    min-height: auto;
  }
  .proof-row {
    gap: 22px;
  }
  .headline {
    font-size: 52px;
  }
  section.sx {
    padding: 72px 0;
  }
  .section-head {
    flex-direction: column;
    align-items: start;
  }
  .countries-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .dor-grid,
  .dep-grid,
  .pricing-grid,
  .dif-grid,
  .sobre-grid,
  .faq-grid,
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .proc-step,
  .proc-step.r,
  .proc-step.l {
    grid-template-columns: auto 1fr;
    gap: 20px;
  }
  .proc-step.r .proc-card,
  .proc-step.l .proc-card {
    grid-column: 2;
    text-align: left;
  }
  .proc-step.r .proc-num-wrap,
  .proc-step.l .proc-num-wrap {
    grid-column: 1;
  }
  .processo-line {
    left: 32px;
  }
  .dor-solution {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .price-card.feat {
    transform: none;
  }
  .price-card.feat:hover {
    transform: translateY(-4px);
  }
  .cta-final-wrap {
    padding: 80px 24px;
  }
  .foot-bar {
    flex-direction: column;
  }
  .scarcity-minimal {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: left;
  }
  .scar-num {
    font-size: clamp(96px, 22vw, 150px);
  }
  .scarcity-windows {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 24px;
    min-width: 0;
  }
  .countries-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .sobre-sign {
    flex-wrap: wrap;
  }
  .sobre-linkedin {
    margin-left: 0;
  }
  .bottom-bar-inner {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .bb-status {
    justify-content: center;
    font-size: 12px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .bb-actions {
    justify-content: center;
  }
  .wa-float {
    right: 14px;
    bottom: 130px;
    width: 52px;
    height: 52px;
  }
  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 560px) {
  .bb-status .kicker,
  .bb-status .divider {
    display: none;
  }
}

@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;
  }
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
  .cursor-glow,
  .hero-fallback {
    animation: none;
  }
  .loader {
    display: none;
  }
  .app {
    opacity: 1;
  }
}
