/* ============================================================
   CUSTOMER HUB — SHARED DESIGN SYSTEM
   Light theme: preto, cinza, branco
============================================================ */

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

:root {
  --bg:         #ffffff;
  --bg-2:       #fafafa;
  --surface:    #f5f5f5;
  --surface-2:  #eeeeee;
  --surface-3:  #e0e0e0;
  --border:     #e5e5e5;
  --border-hi:  #aaaaaa;
  --text:       #0a0a0a;
  --text-2:     #555555;
  --text-3:     #999999;
  --font-h: 'Space Grotesk', sans-serif;
  --font-b: 'Inter', sans-serif;
  --r:    16px;
  --r-sm: 10px;
  --r-lg: 24px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    0.25s var(--ease);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 { font-family: var(--font-h); line-height: 1.08; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: #aaa; border-radius: 4px; }

/* ---- UTILS ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

.gradient-text {
  background: linear-gradient(130deg, #111 0%, #555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #111;
  padding: 5px 14px;
  border: 1px solid #ccc;
  border-radius: 100px;
  margin-bottom: 22px;
}
.tag-dot {
  width: 6px; height: 6px;
  background: #111;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(1.4); }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--t);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary { background: #111; color: #fff; }
.btn-primary:hover { background: #333; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn-dark    { background: #111; color: #fff; }
.btn-dark:hover { background: #333; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn-ghost {
  background: transparent;
  color: #111;
  border: 1px solid #ccc;
}
.btn-ghost:hover { background: #f5f5f5; border-color: #888; transform: translateY(-2px); }
.btn-white { background: #fff; color: #111; }
.btn-white:hover { background: #eee; transform: translateY(-2px); }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-3); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span[aria-hidden] { color: var(--border-hi); }
.breadcrumb-sep { color: var(--border-hi); }

/* ---- NAVBAR ---- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: var(--t);
}
#nav.stuck {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
/* Nav over dark hero: make text white before scroll */
body:has(.page-hero--dark) #nav:not(.stuck) .nav-logo { color: #fff; }
body:has(.page-hero--dark) #nav:not(.stuck) .nav-logo em { color: rgba(255,255,255,.55); }
body:has(.page-hero--dark) #nav:not(.stuck) .nav-dot { background: #fff; }
body:has(.page-hero--dark) #nav:not(.stuck) .nav-links a { color: rgba(255,255,255,.75); }
body:has(.page-hero--dark) #nav:not(.stuck) .nav-links a:hover { color: #fff; }
body:has(.page-hero--dark) #nav:not(.stuck) .nav-links a.active { color: #fff; }
body:has(.page-hero--dark) #nav:not(.stuck) .nav-links a:hover::after { background: #fff; }
body:has(.page-hero--dark) #nav:not(.stuck) .nav-links a.active::after { background: #fff; }
body:has(.page-hero--dark) #nav:not(.stuck) .btn-primary { background: #fff; color: #111; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-family: var(--font-h);
  font-size: 21px;
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.nav-logo em { color: #555; font-style: normal; }
.nav-dot { width: 7px; height: 7px; background: #111; border-radius: 50%; margin-left: 1px; display: inline-block; }
.nav-links { display: flex; list-style: none; gap: 36px; }
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--t);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: #111;
  transition: var(--t);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--text); font-weight: 700; }
.nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(24px);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
#mobile-menu.open { display: flex; opacity: 1; pointer-events: all; }
.mm-link {
  font-family: var(--font-h);
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 700;
  color: var(--text-2);
  text-decoration: none;
  transition: var(--t);
  padding: 8px 0;
}
.mm-link:hover { color: var(--text); }
.mm-cta { margin-top: 24px; }

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 120px 0 72px;
  background: #f7f7f7;
  background-image:
    linear-gradient(rgba(0,0,0,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero-grid { position: relative; }
.page-hero-content { position: relative; }
.page-hero h1 {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
}
.page-hero p {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-2);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 36px;
}
.page-hero-actions,
.page-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- PAGE HERO DARK VARIANT ---- */
.page-hero--dark {
  background-color: #07070f;
  background-image:
    radial-gradient(ellipse 70% 110% at 5% 55%, rgba(110, 40, 245, 0.45) 0%, transparent 58%),
    radial-gradient(ellipse 50% 70% at 90% 15%, rgba(65, 15, 185, 0.28) 0%, transparent 52%),
    radial-gradient(ellipse 35% 50% at 60% 90%, rgba(140, 60, 255, 0.12) 0%, transparent 50%),
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: auto, auto, auto, 56px 56px, 56px 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.page-hero--dark h1,
.page-hero--dark h2 { color: #fff; }
.page-hero--dark p { color: rgba(255,255,255,.6); }
.page-hero--dark .breadcrumb,
.page-hero--dark .breadcrumb a { color: rgba(255,255,255,.4); }
.page-hero--dark .breadcrumb a:hover { color: rgba(255,255,255,.75); }
.page-hero--dark .breadcrumb span[aria-hidden] { color: rgba(255,255,255,.2); }
.page-hero--dark .tag,
.page-hero--dark .page-hero-tag { color: rgba(255,255,255,.45); border-color: rgba(255,255,255,.15); }
.page-hero--dark .tag-dot { background: rgba(255,255,255,.45); }
.page-hero--dark .btn-ghost {
  border-color: rgba(255,255,255,.25);
  color: #fff;
}
.page-hero--dark .btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.45);
}
.page-hero--dark .btn-primary {
  background: #fff;
  color: #111;
}
.page-hero--dark .btn-primary:hover {
  background: #eee;
  color: #111;
  box-shadow: 0 8px 24px rgba(255,255,255,.15);
}
.page-hero--dark .btn-dark {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.page-hero--dark .btn-dark:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
}

/* ---- HERO COLOR VARIANTS ---- */
/* CX — purple (default) */
.page-hero--cx {
  background-color: #07070f;
  background-image:
    radial-gradient(ellipse 75% 120% at 3% 60%, rgba(120, 40, 255, 0.50) 0%, transparent 58%),
    radial-gradient(ellipse 55% 75% at 92% 10%, rgba(70, 15, 200, 0.30) 0%, transparent 52%),
    radial-gradient(ellipse 40% 55% at 55% 95%, rgba(150, 70, 255, 0.14) 0%, transparent 50%),
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: auto, auto, auto, 56px 56px, 56px 56px;
}

/* Tráfego Pago — amber */
.page-hero--trafego {
  background-color: #0d0600;
  background-image:
    radial-gradient(ellipse 70% 110% at 5% 55%, rgba(255, 130, 20, 0.44) 0%, transparent 58%),
    radial-gradient(ellipse 50% 70% at 88% 15%, rgba(200, 70, 5, 0.28) 0%, transparent 52%),
    radial-gradient(ellipse 35% 50% at 58% 92%, rgba(255, 155, 40, 0.15) 0%, transparent 50%),
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: auto, auto, auto, 56px 56px, 56px 56px;
}

/* Sites — blue */
.page-hero--sites {
  background-color: #04080f;
  background-image:
    radial-gradient(ellipse 70% 110% at 5% 55%, rgba(40, 100, 255, 0.44) 0%, transparent 58%),
    radial-gradient(ellipse 50% 70% at 90% 15%, rgba(20, 55, 210, 0.28) 0%, transparent 52%),
    radial-gradient(ellipse 35% 50% at 60% 90%, rgba(60, 120, 255, 0.14) 0%, transparent 50%),
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: auto, auto, auto, 56px 56px, 56px 56px;
}

/* SEO — emerald */
.page-hero--seo {
  background-color: #030f08;
  background-image:
    radial-gradient(ellipse 70% 110% at 5% 55%, rgba(16, 195, 115, 0.42) 0%, transparent 58%),
    radial-gradient(ellipse 50% 70% at 90% 15%, rgba(8, 135, 75, 0.26) 0%, transparent 52%),
    radial-gradient(ellipse 35% 50% at 60% 90%, rgba(40, 215, 135, 0.13) 0%, transparent 50%),
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: auto, auto, auto, 56px 56px, 56px 56px;
}

/* Marketing & Design — rose */
.page-hero--marketing {
  background-color: #0d0307;
  background-image:
    radial-gradient(ellipse 70% 110% at 5% 55%, rgba(240, 50, 115, 0.42) 0%, transparent 58%),
    radial-gradient(ellipse 50% 70% at 90% 15%, rgba(185, 15, 75, 0.26) 0%, transparent 52%),
    radial-gradient(ellipse 35% 50% at 60% 90%, rgba(255, 80, 140, 0.13) 0%, transparent 50%),
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: auto, auto, auto, 56px 56px, 56px 56px;
}

/* Treinamentos — indigo */
.page-hero--treinamentos {
  background-color: #060510;
  background-image:
    radial-gradient(ellipse 70% 110% at 5% 55%, rgba(85, 65, 245, 0.47) 0%, transparent 58%),
    radial-gradient(ellipse 50% 70% at 90% 15%, rgba(40, 20, 195, 0.30) 0%, transparent 52%),
    radial-gradient(ellipse 35% 50% at 60% 90%, rgba(105, 85, 255, 0.15) 0%, transparent 50%),
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: auto, auto, auto, 56px 56px, 56px 56px;
}

/* ---- HERO LAYOUTS ---- */
/* Split: text left + visual right */
.ph-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Centered hero */
.ph-centered {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.ph-centered .page-hero-btns,
.ph-centered .hero-ctas { justify-content: center; }
.ph-centered h1 { max-width: 100%; }
.ph-centered p { max-width: 620px; margin-left: auto; margin-right: auto; }

/* Mega stat (Tráfego Pago) */
.ph-mega {
  font-family: var(--font-h);
  font-size: clamp(56px, 12vw, 120px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(130deg, rgba(255,165,30,1) 0%, rgba(255,100,10,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

/* Stat cards — CX */
.ph-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ph-stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 20px 24px;
  backdrop-filter: blur(12px);
}
.ph-stat-card .psc-label {
  font-size: 10px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 6px;
}
.ph-stat-card .psc-value {
  font-family: var(--font-h);
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.ph-stat-card .psc-sub {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-top: 6px;
}
.ph-stat-card .psc-bar {
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.1);
  margin-top: 14px;
  overflow: hidden;
}
.ph-stat-card .psc-fill {
  height: 100%;
  border-radius: 2px;
  background: rgba(120,50,255,.75);
}

/* Browser mockup — Sites */
.ph-browser {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  overflow: hidden;
  max-width: 360px;
  width: 100%;
}
.ph-browser-bar {
  background: rgba(255,255,255,.07);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ph-browser-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.ph-browser-url {
  flex: 1;
  background: rgba(255,255,255,.07);
  border-radius: 4px;
  height: 18px;
  margin: 0 10px;
}
.ph-browser-body { padding: 18px; }
.ph-brow-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  margin-bottom: 9px;
}
.ph-brow-line.w80 { width: 80%; }
.ph-brow-line.w60 { width: 60%; }
.ph-brow-line.w90 { width: 90%; }
.ph-brow-metrics {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.ph-brow-mc {
  flex: 1;
  background: rgba(40,100,255,.14);
  border: 1px solid rgba(40,100,255,.24);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.ph-brow-mc .num {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 800;
  color: rgba(90,150,255,.95);
}
.ph-brow-mc .lbl {
  font-size: 9px;
  color: rgba(255,255,255,.35);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* Ranking cards — SEO */
.ph-ranks { display: flex; flex-direction: column; gap: 10px; }
.ph-rank {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  padding: 13px 18px;
  max-width: 300px;
}
.ph-rank.top-1 {
  background: rgba(16,195,115,.10);
  border-color: rgba(16,195,115,.22);
}
.ph-rank-pos {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 800;
  color: rgba(255,255,255,.25);
  min-width: 28px;
}
.ph-rank.top-1 .ph-rank-pos { color: rgba(16,195,115,.95); }
.ph-rank-info { flex: 1; }
.ph-rank-domain { font-size: 13px; color: rgba(255,255,255,.7); font-weight: 500; }
.ph-rank-kw { font-size: 10px; color: rgba(255,255,255,.35); margin-top: 2px; }
.ph-rank-badge {
  font-size: 10px;
  font-weight: 700;
  color: rgba(16,195,115,.9);
  background: rgba(16,195,115,.12);
  border-radius: 4px;
  padding: 2px 7px;
}

/* Module tags — Treinamentos */
.ph-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.ph-module {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ph-module::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(105,85,255,.8);
  flex-shrink: 0;
}

/* Marketing — big quote text */
.ph-quote {
  font-family: var(--font-h);
  font-size: clamp(13px, 1.6vw, 17px);
  color: rgba(255,255,255,.3);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}

/* Responsive: hide visual on mobile */
@media (max-width: 768px) {
  .ph-split { grid-template-columns: 1fr; }
  .ph-visual { display: none; }
  .ph-mega { font-size: clamp(48px, 18vw, 80px); }
}

/* ---- SECTION DEFAULTS ---- */
section { padding: 88px 0; }
.sh {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}
.sh-title {
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -.018em;
  margin-bottom: 14px;
  line-height: 1.1;
}
.sh-desc { font-size: 17px; color: var(--text-2); line-height: 1.75; }

/* ---- CARDS ---- */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  transition: var(--t);
}
.card:hover { border-color: var(--border-hi); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.07); }
.card-icon {
  width: 50px; height: 50px;
  background: #f0f0f0;
  border: 1px solid #e0e0e0;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: var(--t);
}
.card:hover .card-icon { background: #e0e0e0; border-color: #bbb; }

/* ---- TESTIMONIALS ---- */
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.test-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 30px;
  transition: var(--t);
}
.test-card:hover { border-color: var(--border-hi); transform: translateY(-4px); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { color: #FFC23C; font-size: 15px; }
.test-body { font-size: 14px; color: var(--text-2); line-height: 1.8; margin-bottom: 22px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #333;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 800; font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: 14px; }
.t-co { font-size: 12px; color: var(--text-3); margin-top: 2px; }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--border-hi); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  gap: 16px;
  user-select: none;
}
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #eee;
  border: 1px solid #ddd;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  color: #444;
  transition: var(--t);
}
.faq-item.open .faq-icon { background: #111; border-color: #111; color: #fff; transform: rotate(45deg); }
.faq-a { padding: 0 22px 18px; font-size: 14px; color: var(--text-2); line-height: 1.8; display: none; }
.faq-item.open .faq-a { display: block; }

/* ---- STATS ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.stat-cell { background: var(--surface); padding: 44px 32px; text-align: center; transition: var(--t); }
.stat-cell:hover { background: var(--surface-2); }
.stat-n { font-family: var(--font-h); font-size: clamp(38px, 4.5vw, 60px); font-weight: 800; letter-spacing: -.04em; line-height: 1; color: #111; }
.stat-sfx { font-family: var(--font-h); font-size: 28px; font-weight: 800; color: #888; }
.stat-lbl { font-size: 13px; color: var(--text-3); margin-top: 8px; font-weight: 500; }

/* ---- CTA SECTION ---- */
.cta-section {
  background: #111;
  padding: 96px 0;
}
.cta-section-inner {
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}
.cta-section .tag { color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.2); }
.cta-section .tag-dot { background: rgba(255,255,255,.5); }
.cta-section h2 {
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 16px;
}
.cta-section p { font-size: 17px; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 36px; }
.cta-section-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-ghost { border-color: rgba(255,255,255,.3); color: #fff; }
.cta-section .btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }

/* ---- CLIENTS STRIP ---- */
.clients-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 42px 0; overflow: hidden; }
.strip-label { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 28px; }
.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}
.marquee-track { display: flex; gap: 52px; animation: marquee 28s linear infinite; width: max-content; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.cl { font-family: var(--font-h); font-weight: 700; font-size: 17px; color: var(--text-3); cursor: default; user-select: none; }
.cl-sep { color: var(--surface-3); font-size: 20px; }

/* ---- FOOTER ---- */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-logo { font-family: var(--font-h); font-size: 20px; font-weight: 800; color: var(--text); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; margin-bottom: 14px; }
.footer-logo em { color: #555; font-style: normal; }
.footer-desc { font-size: 13px; color: var(--text-3); line-height: 1.7; max-width: 270px; margin-bottom: 22px; }
.socials { display: flex; gap: 10px; }
.soc { width: 34px; height: 34px; border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text-3); text-decoration: none; font-size: 13px; font-weight: 700; transition: var(--t); }
.soc:hover { border-color: #aaa; color: #111; background: #eee; }
.fc-col-title { font-weight: 700; font-size: 13px; margin-bottom: 18px; color: var(--text); }
.fc-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fc-list a { color: var(--text-3); text-decoration: none; font-size: 13px; transition: var(--t); }
.fc-list a:hover { color: var(--text); padding-left: 4px; }
.footer-bottom { padding-top: 28px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.fc-copy { font-size: 12px; color: var(--text-3); }
.fc-copy a { color: #333; text-decoration: none; }

/* ---- WHATSAPP FLOAT ---- */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 800; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 8px 28px rgba(37,211,102,.38); transition: var(--t); }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(37,211,102,.5); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }

/* ---- SCROLL ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
/* Hero elements are always above fold — show immediately */
.page-hero .fade-up { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ---- HERO SECTION ---- */
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 700; margin-bottom: 20px; line-height: 1.1; }
.hero-sub { font-size: 18px; color: var(--text-2); line-height: 1.8; margin-bottom: 36px; }
.hero-actions { margin-bottom: 48px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.stat { text-align: left; }
.stat-num { font-size: 28px; font-weight: 800; color: #111; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--text-3); }
.hero-visual { position: relative; }
.hero-visual svg { width: 100%; height: auto; max-width: 400px; }

.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 60px; }
.pillar { }
.pillar-num { font-size: 48px; font-weight: 800; color: #ddd; margin-bottom: 12px; }
.pillar-title { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.pillar-desc { color: var(--text-2); line-height: 1.8; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 60px; }
.service-card { padding: 32px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; transition: var(--t); }
.service-card:hover { transform: translateY(-8px); border-color: #999; background: #fff; }
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-title { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.service-desc { font-size: 14px; color: var(--text-2); line-height: 1.8; }

.sh { text-align: center; margin-bottom: 20px; }
.sh-title { font-size: clamp(28px, 4vw, 42px); font-weight: 700; margin-bottom: 12px; }
.sh-desc { font-size: 17px; color: var(--text-2); max-width: 600px; margin: 0 auto; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .test-grid  { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container  { padding: 0 20px; }
  section     { padding: 64px 0; }
  .page-hero  { padding: 110px 0 60px; }
  .stats-bar  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger            { display: flex; }
  .test-grid            { grid-template-columns: 1fr; }
  .footer-grid          { grid-template-columns: 1fr; }
  .footer-bottom        { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .page-hero-actions, .cta-section-btns { flex-direction: column; }
  .page-hero-actions .btn, .cta-section-btns .btn { justify-content: center; }
  .stats-bar { grid-template-columns: 1fr; }
}
/* Updated at Sun Aug  2 21:37:51 -03 2026 */
