/* ============================================================
   SIZEOF V2 — DARK PREMIUM CSS
   ============================================================ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:       #9D00FF;
  --purple-light: #B94FFF;
  --purple-dark:  #6B00B3;
  --purple-glow:  rgba(157, 0, 255, 0.35);
  --purple-faint: rgba(157, 0, 255, 0.08);

  --bg:           #080808;
  --bg-2:         #0E0E0E;
  --bg-3:         #141414;
  --bg-card:      #111111;
  --bg-card-2:    #161616;

  --text:         #F0F0F0;
  --text-muted:   rgba(240,240,240,0.55);
  --text-faint:   rgba(240,240,240,0.30);

  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(157,0,255,0.4);

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

  --font-body:    'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.87, 0, 0.13, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

/* ─── SELEÇÃO ───────────────────────────────────────────────── */
::selection { background: var(--purple); color: #fff; }

/* ─── CURSOR ────────────────────────────────────────────────── */
.cursor {
  width: 10px; height: 10px;
  background: var(--purple);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: screen;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(157,0,255,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out), width 0.3s, height 0.3s, opacity 0.3s;
}
@media (pointer: coarse) { .cursor, .cursor-follower { display: none; } }

/* ─── CONTAINER ─────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) { .container { padding: 0 1.25rem; } }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
.text-accent { color: var(--purple); }

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-faint);
  border: 1px solid rgba(157,0,255,0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 0 0 0 var(--purple-glow);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn--primary:hover {
  box-shadow: 0 0 30px var(--purple-glow), 0 8px 24px rgba(157,0,255,0.4);
  transform: translateY(-2px);
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary span, .btn--primary svg { position: relative; z-index: 1; }

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--purple);
  color: var(--purple);
  box-shadow: 0 0 20px rgba(157,0,255,0.15);
}

.btn--ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 1.5rem;
  transition: all 0.3s;
}
.btn--whatsapp svg { width: 20px; height: 20px; }
.btn--whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--xl { padding: 1.125rem 2.5rem; font-size: 1.0625rem; }
.btn--full { width: 100%; justify-content: center; border-radius: var(--radius-md); }

/* ─── PRELOADER ─────────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader__inner { text-align: center; }

.preloader__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.preloader__logo-mark {
  font-size: 2rem;
  color: var(--purple);
  animation: rotateMark 2s linear infinite;
}
.preloader__logo-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
}

.preloader__bar {
  width: 200px;
  height: 2px;
  background: var(--bg-3);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 1rem;
}
.preloader__bar-fill {
  height: 100%;
  background: var(--purple);
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--purple);
}
.preloader__percent {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

@keyframes rotateMark {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ─── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 0;
}

.nav__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-right: auto;
}
.nav__logo-mark { color: var(--purple); font-size: 1.1rem; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav__link:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav__cta { font-size: 0.875rem; padding: 0.625rem 1.375rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    gap: 0.5rem;
  }
  .nav__link { font-size: 1.125rem; padding: 0.75rem 1rem; }
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 600px; height: 600px;
  background: rgba(157,0,255,0.18);
  top: -100px; right: -100px;
  animation: glowPulse 8s ease-in-out infinite;
}
.hero__glow--2 {
  width: 400px; height: 400px;
  background: rgba(157,0,255,0.10);
  bottom: 0; left: -100px;
  animation: glowPulse 10s ease-in-out infinite reverse;
}

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

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(157,0,255,0.1);
  border: 1px solid rgba(157,0,255,0.25);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.3} }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.hero__title-accent {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 50%, #ff00c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hero__stat {
  display: flex;
  flex-direction: column;
}
.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}
.hero__stat-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple);
  vertical-align: top;
}
.hero__stat-label {
  font-size: 0.8125rem;
  color: var(--text-faint);
  margin-top: 0.25rem;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero visual */
.hero__visual { position: relative; }
.hero__visual-wrapper { position: relative; }
.hero__visual-img {
  width: 100%;
  border-radius: var(--radius-xl);
  animation: float 6s ease-in-out infinite;
}
.hero__visual-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(157,0,255,0.2) 0%, transparent 70%);
  pointer-events: none;
  border-radius: var(--radius-xl);
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* Float cards */
.float-card {
  position: absolute;
  background: rgba(20,20,20,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: floatCard 4s ease-in-out infinite;
}
.float-card--1 { top: 10%; right: -5%; animation-delay: 0s; }
.float-card--2 { bottom: 15%; left: -5%; animation-delay: 2s; }

@keyframes floatCard {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

.float-card__icon { font-size: 1.5rem; }
.float-card__text { display: flex; flex-direction: column; }
.float-card__text strong { font-size: 0.875rem; font-weight: 600; }
.float-card__text span { font-size: 0.75rem; color: var(--text-muted); }
.float-card__check {
  width: 24px; height: 24px;
  background: #22c55e;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: #fff;
  margin-left: auto;
}

/* Hero scroll */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-faint);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  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; }
}

/* ─── TICKER ────────────────────────────────────────────────── */
.ticker {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow: hidden;
}
.ticker__track { overflow: hidden; }
.ticker__list {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
  width: max-content;
}
.ticker__list span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.ticker__dot { color: var(--purple) !important; }

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

/* ─── SOBRE ─────────────────────────────────────────────────── */
.sobre {
  padding: 8rem 0;
  background: var(--bg);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.sobre__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.sobre__text {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.sobre__text strong { color: var(--text); }

.sobre__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.3s;
}
.pillar:hover { border-color: var(--border-hover); }
.pillar__icon {
  width: 40px; height: 40px;
  background: var(--purple-faint);
  border: 1px solid rgba(157,0,255,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pillar__icon svg { width: 20px; height: 20px; color: var(--purple); }
.pillar div:last-child { display: flex; flex-direction: column; }
.pillar strong { font-size: 0.9375rem; font-weight: 600; }
.pillar span { font-size: 0.8125rem; color: var(--text-muted); }

/* Sobre card stack */
.sobre__visual { display: flex; justify-content: center; }
.sobre__card-stack { position: relative; width: 100%; max-width: 440px; }

.sobre__card {
  border-radius: var(--radius-xl);
  position: absolute;
}
.sobre__card--back {
  width: 90%; height: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  top: 20px; left: 5%;
  transform: rotate(-3deg);
}
.sobre__card--mid {
  width: 95%; height: 340px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  top: 10px; left: 2.5%;
  transform: rotate(-1.5deg);
}
.sobre__card--front {
  position: relative;
  width: 100%;
  background: var(--bg-card-2);
  border: 1px solid rgba(157,0,255,0.2);
  padding: 2rem;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(157,0,255,0.1);
}

.sobre__card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1.5rem;
}

.sobre__tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
.tech-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.625rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all 0.2s;
}
.tech-item:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-faint);
}

.sobre__card-stat {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.sobre__card-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple);
}
.sobre__card-stat span:last-child { font-size: 0.875rem; color: var(--text-muted); }

/* ─── SERVIÇOS ──────────────────────────────────────────────── */
.servicos {
  padding: 8rem 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.servicos__bg-glow {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(157,0,255,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(157,0,255,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  border-color: rgba(157,0,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(157,0,255,0.15);
}
.service-card:hover::before { opacity: 1; }

.service-card--featured {
  border-color: rgba(157,0,255,0.3);
  background: linear-gradient(135deg, rgba(157,0,255,0.08) 0%, var(--bg-card) 60%);
}

.service-card__badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--purple);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.service-card__number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.service-card__icon {
  width: 52px; height: 52px;
  background: var(--purple-faint);
  border: 1px solid rgba(157,0,255,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.service-card__icon svg { width: 26px; height: 26px; color: var(--purple); }

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  letter-spacing: -0.02em;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.service-card__list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.service-card__list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--purple);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-card__result {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  padding: 1rem 1.25rem;
  background: var(--purple-faint);
  border: 1px solid rgba(157,0,255,0.15);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}
.service-card__result-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--purple);
}
.service-card__result span:last-child { font-size: 0.8125rem; color: var(--text-muted); }

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--purple);
  transition: gap 0.3s;
}
.service-card__link svg { width: 16px; height: 16px; transition: transform 0.3s; }
.service-card__link:hover svg { transform: translateX(4px); }

/* ─── RESULTADOS ────────────────────────────────────────────── */
.resultados {
  padding: 8rem 0;
  background: var(--bg);
}

.metricas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 4rem;
}
.metrica {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  transition: background 0.3s;
}
.metrica:hover { background: var(--bg-card-2); }
.metrica__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}
.metrica__suf {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple);
  vertical-align: top;
}
.metrica__label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Depoimentos */
.depoimentos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.depo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.4s var(--ease-out);
}
.depo-card:hover {
  border-color: rgba(157,0,255,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.depo-card--featured {
  border-color: rgba(157,0,255,0.3);
  background: linear-gradient(135deg, rgba(157,0,255,0.06) 0%, var(--bg-card) 60%);
}

.depo-card__stars {
  color: #f59e0b;
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.depo-card__quote {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: normal;
}

.depo-card__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.depo-card__avatar {
  width: 40px; height: 40px;
  background: var(--purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.depo-card__author div:last-child { display: flex; flex-direction: column; }
.depo-card__author strong { font-size: 0.9375rem; font-weight: 600; }
.depo-card__author span { font-size: 0.8125rem; color: var(--text-muted); }

/* ─── PROCESSO ──────────────────────────────────────────────── */
.processo {
  padding: 8rem 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.processo__bg-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(157,0,255,0.08) 0%, transparent 70%);
  top: 0; right: -200px;
  pointer-events: none;
}



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

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: all 0.3s;
}
.step:last-child { border-bottom: none; }
.step:hover .step__number { color: var(--purple); }

.step__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-faint);
  line-height: 1;
  transition: color 0.3s;
  padding-top: 0.25rem;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.step__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
}

.step__duration {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--purple);
  background: var(--purple-faint);
  border: 1px solid rgba(157,0,255,0.2);
  padding: 0.3rem 0.875rem;
  border-radius: 50px;
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq {
  padding: 8rem 0;
  background: var(--bg);
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.faq__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.faq__header p { font-size: 0.9375rem; color: var(--text-muted); }
.faq__header a { border-bottom: 1px solid var(--purple); }

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

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

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}
.faq-item__question:hover { color: var(--purple); }
.faq-item__icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: var(--purple);
  transition: transform 0.3s var(--ease-out);
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-item.open .faq-item__answer { max-height: 200px; padding-bottom: 1.5rem; }
.faq-item__answer p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.75; }

/* ─── CTA SECTION ───────────────────────────────────────────── */
.cta-section {
  padding: 8rem 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.cta-section__glow {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(157,0,255,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.cta-section__subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 3rem;
}

.cta-section__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
  margin-bottom: 1.5rem;
}
.form-group { display: flex; flex-direction: column; }
.form-group--full { grid-column: 1 / -1; }

.form-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  transition: all 0.3s;
  outline: none;
  resize: none;
}
.form-input::placeholder { color: var(--text-faint); }
.form-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(157,0,255,0.1);
}
.form-textarea { min-height: 120px; }

.cta-section__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}
.footer__social a:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-faint);
}
.footer__social svg { width: 18px; height: 18px; }

.footer__col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__col a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-faint);
}
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a { color: var(--text-faint); transition: color 0.2s; }
.footer__bottom-links a:hover { color: var(--text-muted); }

/* ─── WHATSAPP FLOAT ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all 0.3s;
}
.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}

/* ─── AOS ANIMATIONS ────────────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-aos="fade-left"] { transform: translateX(24px); }
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0);
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { display: none; }
  .sobre__grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre__visual { display: none; }
  .servicos__grid { grid-template-columns: 1fr; }
  .metricas { grid-template-columns: repeat(2, 1fr); }
  .depoimentos { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .hero { padding: 7rem 0 4rem; }
  .hero__title { font-size: 2.5rem; }
  .hero__stats { gap: 1.25rem; }
  .hero__stat-number { font-size: 1.5rem; }
  .sobre, .servicos, .resultados, .processo, .faq, .cta-section { padding: 5rem 0; }
  .section-title { font-size: 2rem; }
  .metricas { grid-template-columns: repeat(2, 1fr); }
  .metrica__num { font-size: 2.25rem; }
  .cta-section__form { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .step { grid-template-columns: 60px 1fr; gap: 1.25rem; }
  .step__number { font-size: 2.25rem; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .hero__stats { flex-direction: column; gap: 1rem; }
  .hero__stat-divider { display: none; }
  .metricas { grid-template-columns: 1fr; }
}
