/* =============================================
   X PERFORMANCE DIGITAL — STYLESHEET
   ============================================= */

/* =============================================
   INTRO OVERLAY
   ============================================= */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(180deg, #141414 0%, #000000 55%);
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;        /* permite scroll vertical através do overlay no mobile */
  will-change: opacity;
}

#intro-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  transform-origin: center center;
}

.intro-svg {
  width: clamp(240px, 54vw, 560px);
  height: auto;
  display: block;
  overflow: visible;
}

.hero-sticky-wrapper {
  height: 260vh;
}
#hero {
  position: sticky;
  top: 0;
  z-index: 1;
}

/* Preenchimento amarelo: invisível até o JS controlar via scroll */
.intro-fill {
  opacity: 0;
}

/* Navbar e wpp-float iniciam invisíveis; JS controla a opacidade */
#navbar {
  transition: opacity 0.35s ease;
}
.wpp-float {
  /* transição de opacity já existe via var(--transition); sobrescrita para fade-in suave */
  transition: opacity 0.35s ease, transform 0.3s ease, background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
}

:root {
  --bg-primary: #151515;
  --bg-dark: #000000;
  --bg-mid: #0a0a0a;
  --bg-card: #1e1e1e;
  --bg-light: #f2f2f0;
  --bg-lighter: #fafafa;
  --accent: #fad214;
  --text-white: #ffffff;
  --text-muted: #a0a0a0;
  --text-dark: #111111;
  --text-dark-muted: #555555;
  --card-border: rgba(255, 255, 255, 0.07);
  --radius: 14px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
  --pad: 28px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  background: #000;
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

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

/* ─── UTILITIES ─── */
.accent { color: var(--accent); }
.br-desktop { display: block; }

/* ─── SCROLL ANIMATIONS ─── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SECTION LABELS ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-label.label-on-light {
  color: #888;
}
.label-dot, .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}

/* ─── HEADINGS ─── */
.section-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3.5vw, 45px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 24px;
}
.section-headline.dark-heading { color: var(--text-dark); }
.section-about .section-headline.dark-heading { color: var(--text-white); }

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 56px;
}
.section-sub-dark {
  font-size: 16px;
  color: var(--text-dark-muted);
  line-height: 1.75;
  margin-bottom: 52px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #111;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(250, 210, 20, 0.35);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::after { opacity: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px var(--pad);
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav-pill {
  pointer-events: all;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1120px;
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 9px 14px 9px 18px;
  gap: 16px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
#navbar.scrolled .nav-pill {
  background: rgba(8, 8, 8, 0.9);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-left { flex-shrink: 0; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img-placeholder {
  width: 34px;
  height: 34px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #111;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-brand {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-white);
}
.logo-tagline {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 4px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 20px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-wpp-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-wpp-nav:hover {
  background: rgba(250, 210, 20, 0.1);
  border-color: rgba(250, 210, 20, 0.3);
  color: var(--accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Menu ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-close:hover { color: var(--text-white); }
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.mobile-link {
  font-family: 'Sora', sans-serif;
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 700;
  color: var(--text-white);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--accent); }
.mobile-wpp {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  border: 1.5px solid rgba(250, 210, 20, 0.4);
  padding: 12px 28px;
  border-radius: 8px;
  margin-top: 8px;
  transition: var(--transition);
}
.mobile-wpp:hover {
  background: rgba(250, 210, 20, 0.08);
}

/* =============================================
   HERO
   ============================================= */
.section-hero {
  background: var(--bg-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 150px var(--pad) 110px;
  text-align: center;
}
.hero-glow {
  position: absolute;
  width: 80vw;
  height: 80vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(250, 210, 20, 0.07) 0%, transparent 68%);
  top: 50%;
  left: 55%;
  transform: translate(-50%, -55%);
  pointer-events: none;
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 40px;
}
.hero-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3.5vw, 45px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.025em;
  color: var(--text-white);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero-trust-line {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
}

/* =============================================
   CLIENTS MARQUEE
   ============================================= */
.section-clients {
  background: var(--bg-primary);
  padding: 52px 0 56px;
  overflow: hidden;
}
.clients-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.marquee-wrapper {
  overflow: hidden;
  position: relative;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

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

.logo-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  min-width: 90px;
  text-align: center;
  flex-shrink: 0;
  /* SUBSTITUIR por <img src="logo.svg"> — manter o estilo de tamanho/padding */
}
.logo-pill.small {
  padding: 8px 18px;
  font-size: 12px;
  /* usado na faixa estática da seção "Sobre" */
}
.client-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  flex-shrink: 0;
}

/* =============================================
   SOLUÇÕES
   ============================================= */
.section-solutions {
  background: var(--bg-primary);
  padding: 100px 0;
}
.section-solutions--dark {
  background: var(--bg-dark);
}

/* Grid 6 colunas invisíveis para layout 3+2 centrado */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.solutions-grid .solution-card:nth-child(1) { grid-column: 1 / 3; }
.solutions-grid .solution-card:nth-child(2) { grid-column: 3 / 5; }
.solutions-grid .solution-card:nth-child(3) { grid-column: 5 / 7; }
.solutions-grid .solution-card:nth-child(4) { grid-column: 2 / 4; }
.solutions-grid .solution-card:nth-child(5) { grid-column: 4 / 6; }

.solution-card {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(250, 210, 20, 0.25);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.card-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  flex-shrink: 0;
}
.card-icon svg { width: 100%; height: 100%; }

.card-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}
.badge-aquisicao {
  background: rgba(110, 90, 255, 0.14);
  color: rgba(170, 155, 255, 0.9);
  border: 1px solid rgba(110, 90, 255, 0.2);
}
.badge-sistema {
  background: rgba(250, 210, 20, 0.12);
  color: var(--accent);
  border: 1px solid rgba(250, 210, 20, 0.2);
}
.card-title {
  font-family: 'Sora', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.68;
}

/* =============================================
   A X PERFORMANCE (CLARA → DARK)
   ============================================= */
.section-about {
  background: var(--bg-primary);
  padding: 104px 0;
}
.section-text-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 40px;
}
.about-quote {
  border-left: 3px solid var(--accent);
  padding: 18px 24px;
  background: rgba(250, 210, 20, 0.06);
  border-radius: 0 8px 8px 0;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.55;
  margin-bottom: 56px;
  max-width: 680px;
}
.about-logos-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 18px;
}
.about-logos-strip {
  background: #111;
  border-radius: 14px;
  padding: 22px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}
.about-caption {
  font-size: 14px;
  color: #999;
  line-height: 1.65;
  text-align: center;
}

/* =============================================
   FUNDADORES
   ============================================= */
.section-founders {
  background: var(--bg-primary);
  padding: 104px 0;
}
.founder-block {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}
.founder-block:last-child { margin-bottom: 0; }
.founder-reverse {
  grid-template-columns: 1.6fr 1fr;
}

.founder-photo-col { display: flex; flex-direction: column; align-items: center; }
.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: #242424;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* SUBSTITUIR por <img src="foto-fundador.jpg" alt="Nome do Fundador"> com border-radius: 16px */
}
.photo-icon { font-size: 28px; opacity: 0.35; }
.photo-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.photo-hint { font-size: 11px; color: rgba(255, 255, 255, 0.2); }
.founder-name-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.founder-content-col { padding-top: 8px; flex: 1; min-width: 0; }
.founder-accent-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.founder-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 24px;
}
.founder-quote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 22px;
  line-height: 1.55;
}
.founder-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.78;
}

/* =============================================
   ATRIBUTOS (CLARA)
   ============================================= */
.section-attributes {
  background: var(--bg-lighter);
  padding: 104px 0;
}
.attributes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.attributes-grid .attribute-card:nth-child(1) { grid-column: 1 / 3; }
.attributes-grid .attribute-card:nth-child(2) { grid-column: 3 / 5; }
.attributes-grid .attribute-card:nth-child(3) { grid-column: 5 / 7; }
.attributes-grid .attribute-card:nth-child(4) { grid-column: 2 / 4; }
.attributes-grid .attribute-card:nth-child(5) { grid-column: 4 / 6; }

.attribute-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.attribute-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
}
.attr-number {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.attr-title {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.attr-desc {
  font-size: 14px;
  color: var(--text-dark-muted);
  line-height: 1.68;
}

/* =============================================
   EM NÚMEROS
   ============================================= */
.section-numbers {
  background: var(--bg-dark);
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}
.numbers-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(250, 210, 20, 0.05) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 40px 24px;
}
.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 14px;
}
.stat-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 140px;
  margin: 0 auto;
}
.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* =============================================
   CASES
   ============================================= */
.section-cases {
  background: var(--bg-primary);
  padding: 104px 0;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(250, 210, 20, 0.2);
}
.case-logo-placeholder {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  margin-bottom: 28px;
  /* SUBSTITUIR por <img src="logo-cliente.svg" alt="Cliente"> */
}
.case-result {
  font-family: 'Sora', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 4px;
}
.case-result-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.case-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 20px;
}
.case-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.72;
}

/* =============================================
   CONTATO / DIAGNÓSTICO
   ============================================= */
.section-contact {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-mid) 100%);
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(250, 210, 20, 0.05) 0%, transparent 70%);
  bottom: -100px;
  right: 5%;
  pointer-events: none;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3.5vw, 45px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-white);
  line-height: 1.05;
  margin: 16px 0 24px;
}
.contact-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 40px;
}
.contact-specs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.spec-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.spec-key {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-white);
  min-width: 110px;
}
.spec-arrow { color: var(--text-muted); flex-shrink: 0; }
.spec-val { font-size: 14px; color: var(--text-muted); }
.contact-wpp-alt { font-size: 15px; color: var(--text-muted); }
.wpp-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(250, 210, 20, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.wpp-link:hover { text-decoration-color: var(--accent); }

/* Form */
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
}
.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.form-label-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-time-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(250, 210, 20, 0.1);
  padding: 3px 10px;
  border-radius: 100px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.req { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a0a0a0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: #1a1a1a; color: var(--text-white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, 0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(250, 210, 20, 0.45);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(250, 210, 20, 0.07);
}
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: rgba(255, 80, 80, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 80, 80, 0.05);
}
.field-error {
  display: block;
  font-size: 11px;
  color: #ff6060;
  margin-top: 5px;
  min-height: 16px;
}
.form-group textarea { resize: vertical; min-height: 80px; }

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #111;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 15px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(250, 210, 20, 0.4);
}
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-submit:hover::after { opacity: 1; }

.form-caption {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 14px;
  text-align: center;
  line-height: 1.55;
}
.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}
.form-success.show { display: block; }
.success-checkmark {
  width: 60px;
  height: 60px;
  background: rgba(250, 210, 20, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent);
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}
.form-success p { font-size: 14px; color: var(--text-muted); }

/* =============================================
   FOOTER
   ============================================= */
.section-footer {
  background: var(--bg-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-top: 64px;
  padding-bottom: 52px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-logo-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-white);
}
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-tagline {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.72;
  max-width: 300px;
}
.footer-col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--text-white); }
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contacts a,
.footer-contacts span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
  transition: color 0.2s;
}
.footer-contacts a:hover { color: var(--text-white); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-inner > span,
.footer-bottom-inner a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
}
.footer-bottom-inner a:hover { color: rgba(255, 255, 255, 0.6); }
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-sep {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* ─── HORIZONTAL SCROLL SECTION ─── */
.hscroll-wrapper {
  position: relative;
  height: 300vh;
}
.hscroll-track {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hscroll-inner {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
}
.horizontal-panel {
  min-width: 100vw;
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* About panel: content centered */
.hscroll-track .section-about { padding: 48px 0; }
.hscroll-track .about-quote { margin-bottom: 0; }

/* Founder panels: vertically centered */
.hscroll-track .section-founders {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
/* Horizontal layout: photo on left, text on right */
.hscroll-track .founder-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0;
  gap: 56px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
/* Portrait photo: larger and fixed so both panels have identical photo size */
.hscroll-track .photo-placeholder {
  aspect-ratio: 3/4;
  height: 460px;
  width: auto;
  flex-shrink: 0;
}
.about-panel-inner {
  max-width: 720px;
}
.founder-panel-inner {
  width: 100%;
}

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px 12px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
  transition: var(--transition);
}
.wpp-float:hover {
  background: rgba(250, 210, 20, 0.1);
  border-color: rgba(250, 210, 20, 0.35);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* =============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================= */
@media (max-width: 1024px) {
  .solutions-grid,
  .attributes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solutions-grid .solution-card,
  .attributes-grid .attribute-card {
    grid-column: auto !important;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-divider { display: none; }
  .stat-item { border: 1px solid rgba(255, 255, 255, 0.05); }

  .contact-layout { grid-template-columns: 1fr; gap: 60px; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }

  .founder-block,
  .founder-reverse {
    grid-template-columns: 180px 1fr;
    gap: 32px;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================= */
@media (max-width: 768px) {
  :root { --pad: 18px; }
  .br-desktop { display: none; }

  /* Navbar */
  .nav-center { display: none; }
  .hamburger { display: flex; }
  .nav-pill { justify-content: space-between; }

  /* Títulos */
  .section-headline,
  .hero-headline,
  .contact-headline { font-size: 35px; }

  /* Hero */
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 340px; justify-content: center; }

  /* Grids → 1 coluna */
  .solutions-grid,
  .attributes-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .solutions-grid .solution-card,
  .attributes-grid .attribute-card {
    grid-column: 1 !important;
  }

  /* Stats → 2x2 */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-number { font-size: clamp(42px, 10vw, 60px); }

  /* Contact form */
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer → 1 coluna */
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; }
  .footer-brand { grid-column: 1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Scroll horizontal — about com clearance do navbar, founders centralizados */
  .hscroll-track .section-about { padding: 76px 0 32px; }
  .hscroll-track .section-founders {
    align-items: center;
    padding: 0;
    overflow-y: auto;
  }
  .hscroll-track .founder-block {
    flex-direction: column;
    gap: 24px;
    max-width: 560px;
  }
  .hscroll-track .founder-photo-col { display: block; width: 100%; }
  .hscroll-track .photo-placeholder { width: auto; height: clamp(260px, 42vh, 340px); aspect-ratio: 3/4; flex-shrink: unset; }

  /* Floating WPP */
  .wpp-float-text { display: none; }
  .wpp-float { width: 52px; height: 52px; padding: 0; justify-content: center; border-radius: 50%; }
}
