/* ============================================================
   KLUE DIGITAL — style.css
   Dark, electric, conversion-focused
   ============================================================ */

:root {
  --violet:    #912bff;
  --purple:    #a423c5;
  --violet-2:  #7b1fe0;
  --dark:      #07070f;
  --dark-2:    #0e0d1a;
  --dark-3:    #16152a;
  --dark-4:    #1e1c35;
  --white:     #f4f2ff;
  --grey-1:    #2a2840;
  --grey-2:    #3d3a5c;
  --grey-3:    #6b67a0;
  --grey-4:    #9895c0;
  --grey-5:    #c4c2d8;
  --sans:      'Roboto', system-ui, sans-serif;
  --mono:      'Roboto Mono', monospace;
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
body.loading { overflow: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; }
button { font-family: inherit; }

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin: auto;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid var(--violet);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.4s var(--ease-expo), border-color 0.3s, background 0.3s, width 0.4s var(--ease-expo), height 0.4s var(--ease-expo);
}
.cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--violet);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.3s;
}
.cursor.hovering {
  width: 64px; height: 64px;
  background: rgba(145,43,255,0.1);
  border-color: transparent;
}
.cursor.clicking { transform: translate(-50%, -50%) scale(0.8); }

/* ── LOADER ── */
.loader { display: none !important; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background 0.5s, border-color 0.5s, padding 0.4s;
}
header.scrolled {
  background: rgba(7,7,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(145,43,255,0.15);
}
.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  transition: padding 0.4s;
}
header.scrolled .header-row { padding: 16px 0; }
.logo { display: flex; align-items: center; height: 44px; }
.logo-img {
  height: 44px; width: auto;
  display: block;
  filter: brightness(10) saturate(0);
  transition: filter 0.4s;
}
header.hero-zone .logo-img { filter: brightness(10) saturate(0); }

/* Nav */
.nav-desktop { display: none; }
.nav-link {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-4);
  transition: color 0.3s;
  overflow: hidden;
  display: inline-block;
}
.nav-link span { display: block; transition: transform 0.4s var(--ease-expo); }
.nav-link::after {
  content: attr(data-text);
  position: absolute;
  top: 100%; left: 0;
  color: var(--violet);
  transition: transform 0.4s var(--ease-expo);
}
.nav-link:hover span { transform: translateY(-100%); }
.nav-link:hover::after { transform: translateY(-100%); }
.nav-link.active { color: var(--violet); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.ham-line {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: transform 0.4s var(--ease-expo), opacity 0.3s;
  transform-origin: center;
}
.hamburger.active .ham-line:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.hamburger.active .ham-line:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 100vw);
  height: 100vh;
  background: var(--dark-2);
  border-left: 1px solid rgba(145,43,255,0.2);
  z-index: 490;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-expo);
}
.mobile-menu.open { transform: translateX(0); }
.mob-link {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s, transform 0.5s var(--ease-expo), color 0.3s;
}
.mobile-menu.open .mob-link { opacity: 1; transform: translateX(0); }
.mobile-menu.open .mob-link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open .mob-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mob-link:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu.open .mob-link:nth-child(4) { transition-delay: 0.29s; }
.mobile-menu.open .mob-link:nth-child(5) { transition-delay: 0.36s; }
.mobile-menu.open .mob-link:nth-child(6) { transition-delay: 0.43s; }
.mob-link:hover { color: var(--violet); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-real-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.4) saturate(0.6);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,7,15,0.92) 0%,
    rgba(10,7,30,0.75) 40%,
    rgba(145,43,255,0.1) 100%
  );
}
.hero-orb {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(145,43,255,0.18) 0%, transparent 65%);
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow-line {
  display: block;
  width: 32px; height: 1px;
  background: var(--violet);
}
.hero-eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--violet);
  font-family: var(--mono);
}
.hero-title {
  font-family: var(--sans);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  overflow: visible;
  white-space: normal;
}
.hero-title .line-1,
.hero-title .line-2 {
  display: block;
  overflow: visible;
  white-space: normal;
}
.hero-title .line-1 {
  font-size: clamp(52px, 8vw, 112px);
  display: block;
}
.hero-title .line-2 {
  font-size: clamp(52px, 8vw, 112px);
  display: block;
  background: linear-gradient(90deg, var(--violet), var(--purple), #e040fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 19px);
  color: rgba(244,242,255,0.6);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 400;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--violet), var(--purple));
  color: var(--white);
  padding: 16px 32px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 40px rgba(145,43,255,0.3);
}
.btn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple), #e040fb);
  opacity: 0;
  transition: opacity 0.4s;
}
.btn-hero:hover::before { opacity: 1; }
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 50px rgba(145,43,255,0.45);
}
.btn-hero span, .btn-hero svg { position: relative; z-index: 1; }
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 15px 28px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 1px solid rgba(244,242,255,0.2);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.btn-hero-outline:hover {
  border-color: var(--violet);
  background: rgba(145,43,255,0.08);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-scroll-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,242,255,0.3);
  font-family: var(--mono);
}
.hero-scroll-line {
  width: 40px; height: 1px;
  background: rgba(244,242,255,0.2);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--violet);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(145,43,255,0.15);
}
.hero-stat { flex: 1; padding-right: 32px; }
.hero-stat + .hero-stat {
  padding-left: 32px;
  border-left: 1px solid rgba(145,43,255,0.15);
}
.hero-stat-num {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-num span { color: var(--violet); }
.hero-stat-label {
  font-size: 11px;
  color: var(--grey-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(145,43,255,0.1);
  border-bottom: 1px solid rgba(145,43,255,0.1);
  padding: 18px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: trustScroll 20s linear infinite;
}
@keyframes trustScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-3);
  flex-shrink: 0;
}
.trust-item svg { color: var(--violet); flex-shrink: 0; }
.trust-sep {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(145,43,255,0.4);
  flex-shrink: 0;
}

/* ── SECTION COMMON ── */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-eyebrow-line { display: block; width: 24px; height: 1px; background: var(--violet); }
.section-eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet);
  font-family: var(--mono);
}
.section-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--violet), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 16px;
  color: rgba(244,242,255,0.5);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── SERVIÇOS ── */
.servicos {
  background: var(--dark);
  padding: 120px 0;
}
.serv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}
.serv-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.scard {
  background: var(--dark-2);
  padding: 44px 40px 40px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.4s, transform 0.4s var(--ease-expo);
}
.scard::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--purple));
  transition: width 0.55s var(--ease-expo);
}
.scard:hover::before { width: 100%; }
.scard:hover { background: var(--dark-3); transform: translateY(-2px); }
.scard--accent {
  background: linear-gradient(135deg, rgba(145,43,255,0.15), rgba(164,35,197,0.08));
  border: 1px solid rgba(145,43,255,0.2);
}
.scard--accent:hover { background: linear-gradient(135deg, rgba(145,43,255,0.22), rgba(164,35,197,0.14)); }
.scard-badge {
  display: inline-block;
  position: absolute;
  top: 20px; right: 20px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--violet), var(--purple));
  color: var(--white);
  padding: 4px 10px;
  border-radius: 999px;
}
.scard-icon {
  width: 44px; height: 44px;
  color: var(--violet);
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease-spring);
}
.scard:hover .scard-icon { transform: scale(1.1) rotate(-5deg); }
.scard-icon svg { width: 100%; height: 100%; }
.scard-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(145,43,255,0.4);
  margin-bottom: 12px;
}
.scard-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.scard-desc {
  font-size: 14px;
  color: rgba(244,242,255,0.5);
  line-height: 1.75;
}

/* Diferenciais row */
.diferenciais {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.dif-item {
  background: var(--dark-2);
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: background 0.4s;
}
.dif-item:hover { background: var(--dark-3); }
.dif-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(145,43,255,0.2), rgba(164,35,197,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
}
.dif-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.dif-desc {
  font-size: 13px;
  color: rgba(244,242,255,0.5);
  line-height: 1.7;
}

/* ── PROCESSO ── */
.processo {
  background: var(--dark-2);
  padding: 120px 0;
}
.processo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(145,43,255,0.12);
  margin-top: 72px;
}
.pitem {
  padding: 52px 36px;
  border-right: 1px solid rgba(145,43,255,0.12);
  position: relative;
  transition: background 0.4s;
}
.pitem:last-child { border-right: none; }
.pitem:hover { background: rgba(145,43,255,0.05); }
.pitem::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--purple));
  transition: width 0.55s var(--ease-expo);
}
.pitem:hover::after { width: 100%; }
.pitem-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--violet);
  margin-bottom: 24px;
  display: block;
}
.pitem-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pitem-desc {
  font-size: 13px;
  color: rgba(244,242,255,0.45);
  line-height: 1.8;
}

/* ── PORTFÓLIO ── */
.portfolio {
  background: var(--dark);
  padding: 120px 0;
}
.port-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(145,43,255,0.12);
}
.port-tab-btn {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-3);
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 20px;
  position: relative;
  transition: color 0.3s;
}
.port-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--purple));
  transition: width 0.4s var(--ease-expo);
}
.port-tab-btn.active { color: var(--white); }
.port-tab-btn.active::after { width: 100%; }
.port-tab-btn:hover { color: var(--white); }
.port-panel { display: none; }
.port-panel.active { display: block; }
.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.port-img {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.port-img.tall { aspect-ratio: 4/5; }
.port-img.wide { grid-column: span 2; aspect-ratio: 16/9; }
.img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
  transition: filter 0.5s, transform 0.5s var(--ease-expo);
}
.port-img:hover .img-placeholder { filter: brightness(0.5) saturate(1); }
.port-img:hover .img-placeholder { transform: scale(1.06); }
.img-hover-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(7,7,15,0.9) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-expo);
}
.port-img:hover .img-hover-info { transform: translateY(0); }
.img-hover-info span {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.img-hover-info.light span { color: var(--white); }

/* ── SOBRE ── */
.sobre {
  background: var(--dark-2);
  padding: 120px 0;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.sobre-eyebrow-line { display: block; width: 32px; height: 1px; background: var(--violet); }
.sobre-eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet);
  font-family: var(--mono);
}
.sobre-title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}
.sobre-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--violet), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sobre-text {
  font-size: 16px;
  color: rgba(244,242,255,0.6);
  line-height: 1.8;
  margin-bottom: 24px;
}
.sobre-stats {
  display: flex;
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid rgba(145,43,255,0.15);
  margin-top: 16px;
}
.stat { flex: 1; }
.stat + .stat { padding-left: 28px; border-left: 1px solid rgba(145,43,255,0.15); }
.stat-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-num span { color: var(--violet); }
.stat-label {
  font-size: 11px;
  color: var(--grey-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 6px;
}

/* Sobre visual */
.sobre-visual { position: relative; }
.sobre-img-wrap {
  position: relative;
  border-radius: 2px;
  overflow: visible;
}
.sobre-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(145,43,255,0.3) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
  border-radius: 2px;
}
.sobre-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.8);
  border-radius: 2px;
}
.sobre-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--violet), var(--purple));
  padding: 24px 28px;
  z-index: 2;
  text-align: center;
  box-shadow: 0 8px 40px rgba(145,43,255,0.4);
}
.sobre-badge-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}
.sobre-badge-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-top: 4px;
}
.sobre-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px; height: 80px;
  border: 1px solid rgba(145,43,255,0.3);
  border-radius: 2px;
  z-index: 0;
}

/* ── DEPOIMENTOS ── */
.depoimentos {
  background: var(--dark);
  padding: 120px 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 16px;
}
.testi-card {
  background: var(--dark-2);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s, transform 0.4s var(--ease-expo);
  cursor: default;
}
.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--violet), var(--purple));
  transition: height 0.55s var(--ease-expo);
}
.testi-card:hover::before { height: 100%; }
.testi-card:hover { background: var(--dark-3); transform: translateY(-2px); }
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  color: var(--violet);
}
.testi-text {
  font-size: 16px;
  color: rgba(244,242,255,0.7);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}
.testi-author { display: flex; flex-direction: column; gap: 4px; }
.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.testi-role {
  font-size: 12px;
  color: var(--grey-3);
  font-family: var(--mono);
  letter-spacing: 0.08em;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, rgba(145,43,255,0.15), rgba(164,35,197,0.08));
  border-top: 1px solid rgba(145,43,255,0.2);
  border-bottom: 1px solid rgba(145,43,255,0.2);
  padding: 48px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip-text {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.cta-strip-text em {
  font-style: normal;
  background: linear-gradient(90deg, var(--violet), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-cta-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366, #1aad52);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 32px rgba(37,211,102,0.25);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-cta-strip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(37,211,102,0.4);
}

/* ── GALLERY STRIP ── */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--dark);
}
.strip-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.strip-real-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.7);
  transition: filter 0.5s, transform 0.6s var(--ease-expo);
  display: block;
}
.strip-img:hover .strip-real-img {
  filter: brightness(0.4) saturate(1);
  transform: scale(1.06);
}
.strip-img .img-hover-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(7,7,15,0.88) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-expo);
}
.strip-img:hover .img-hover-info { transform: translateY(0); }

/* ── FLOAT WA ── */
.float-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 600;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(37,211,102,0.5);
}

/* ── FOOTER ── */
.footer {
  background: var(--dark-2);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(145,43,255,0.12);
}
.footer-info p {
  font-size: 14px;
  color: rgba(244,242,255,0.45);
  line-height: 1.8;
}
.footer-info a {
  color: rgba(244,242,255,0.6);
  transition: color 0.3s;
}
.footer-info a:hover { color: var(--violet); }
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(10) saturate(0);
  margin-bottom: 20px;
}
.mt-sm { margin-top: 16px; }

/* Footer form */
.form-wrap h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.form-sub {
  font-size: 13px;
  color: rgba(244,242,255,0.45);
  margin-bottom: 28px;
  line-height: 1.6;
}
.form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-4);
}
.field input,
.field textarea {
  background: var(--dark-3);
  border: 1px solid rgba(145,43,255,0.15);
  border-radius: 3px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--sans);
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  width: 100%;
}
.field input:focus,
.field textarea:focus {
  border-color: rgba(145,43,255,0.5);
  background: var(--dark-4);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--grey-3); }
.field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--violet), var(--purple));
  color: var(--white);
  padding: 15px 28px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  box-shadow: 0 0 32px rgba(145,43,255,0.25);
  position: relative;
  overflow: hidden;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(145,43,255,0.4);
}

/* Footer follow */
.follow-box {
  background: var(--dark-3);
  border: 1px solid rgba(145,43,255,0.15);
  border-radius: 3px;
  padding: 32px;
}
.follow-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.follow-box p {
  font-size: 13px;
  color: rgba(244,242,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}
.btn-follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark-4);
  border: 1px solid rgba(145,43,255,0.3);
  border-radius: 3px;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.btn-follow:hover {
  border-color: var(--violet);
  background: rgba(145,43,255,0.1);
  color: var(--white);
}

/* Footer bottom */
.footer-bottom {
  padding: 24px 0;
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-row span:first-child {
  font-size: 12px;
  color: rgba(244,242,255,0.3);
}

/* ── RESPONSIVE ── */
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 36px;
  }
  .hamburger { display: none; }
}

@media (max-width: 1023px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-visual { order: -1; max-width: 480px; }
  .sobre-badge { bottom: -12px; right: -12px; }
}

@media (max-width: 900px) {
  .serv-grid { grid-template-columns: 1fr 1fr; }
  .serv-grid-2 { grid-template-columns: 1fr; }
  .diferenciais { grid-template-columns: 1fr; }
  .processo-grid { grid-template-columns: 1fr 1fr; }
  .pitem { border-right: none; border-bottom: 1px solid rgba(145,43,255,0.12); }
  .pitem:nth-child(odd) { border-right: 1px solid rgba(145,43,255,0.12); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-strip { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .container { width: calc(100% - 32px); }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-stat { padding: 0; border: none !important; }
  .serv-grid { grid-template-columns: 1fr; }
  .processo-grid { grid-template-columns: 1fr; }
  .pitem { border-right: none !important; }
  .sobre-grid { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .float-wa { bottom: 20px; right: 20px; width: 48px; height: 48px; }
}