/* Reset e base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-dark: #060b14;
  --bg-mid: #0a0f1a;
  --bg-hero-top: #02040f;
  --bg-hero-mid: #040b1d;
  --bg-hero-bottom: #02040f;
  --blue-glow: #022677a6;
  --blue-bright: #3b82f6;
  --blue-btn-start: #2563eb;
  --blue-btn-end: #1d4ed8;
  --blue-deep: #1e40af90;
  --cyan: #22d3ee;
  --cyan-dim: rgba(34, 211, 238, 0.4);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.85);
  --radius: 8px;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Poppins', var(--font);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --glow: 0 0 40px rgba(37, 99, 235, 0.25);
  --glow-strong: 0 0 60px rgba(37, 99, 235, 0.35);
}

/* Animações globais */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(6px, -8px); }
  66% { transform: translate(-4px, 4px); }
}

@keyframes hero-grid-drift {
  0% { transform: translate3d(0, 0, 0); opacity: 0.15; }
  50% { transform: translate3d(-14px, 10px, 0); opacity: 0.24; }
  100% { transform: translate3d(0, 0, 0); opacity: 0.15; }
}

@keyframes hero-aurora-shift {
  0% { background-position: 0% 0%, 100% 0%, 50% 100%; opacity: 0.92; }
  50% { background-position: 8% 10%, 92% 14%, 50% 85%; opacity: 1; }
  100% { background-position: 0% 0%, 100% 0%, 50% 100%; opacity: 0.92; }
}

@keyframes ambient-shift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -1.2%, 0) scale(1.03); }
}

@keyframes grain-drift {
  0% { background-position: 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 120px 90px, -100px -80px, 60px -40px, 0 0; }
}

@keyframes halo-spin {
  0% { transform: translate(-50%, -46%) rotate(0deg); }
  100% { transform: translate(-50%, -46%) rotate(360deg); }
}

@keyframes halo-breathe {
  0%, 100% { transform: translate(-50%, -46%) scale(0.96); opacity: 0.18; }
  50% { transform: translate(-50%, -46%) scale(1.04); opacity: 0.34; }
}

@keyframes section-glow-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate3d(0, -8px, 0) scale(1.04); opacity: 0.72; }
}

@keyframes problema-drift {
  0%, 100% { transform: translate(-8%, -4%) scale(1); opacity: 0.2; }
  50% { transform: translate(10%, 6%) scale(1.08); opacity: 0.32; }
}

@keyframes quem-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes connector-line-flow {
  0% { background-position: 0 50%, 0 50%; opacity: 0.8; }
  50% { background-position: 0 50%, 100% 50%; opacity: 1; }
  100% { background-position: 0 50%, 200% 50%; opacity: 0.8; }
}

@keyframes connector-rail-pulse {
  0%, 100% {
    border-color: rgba(147, 197, 253, 0.24);
    box-shadow: 0 0 0 rgba(59, 130, 246, 0);
    opacity: 0.78;
  }
  50% {
    border-color: rgba(125, 211, 252, 0.72);
    box-shadow: 0 0 14px rgba(56, 189, 248, 0.42);
    opacity: 1;
  }
}

@keyframes connector-node-run {
  0% { top: 8%; opacity: 0.45; }
  50% { top: 92%; opacity: 1; }
  100% { top: 8%; opacity: 0.45; }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background:
    radial-gradient(900px 520px at 14% 12%, rgba(6, 51, 123, 0.34), transparent 66%),
    radial-gradient(780px 460px at 88% 30%, rgba(31, 111, 175, 0.22), transparent 68%),
    radial-gradient(920px 540px at 50% 105%, rgba(20, 74, 156, 0.2), transparent 70%),
    linear-gradient(180deg, var(--bg-hero-top) 0%, var(--bg-hero-mid) 52%, var(--bg-hero-bottom) 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  background-attachment: scroll;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 115, 255, 0) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 64%, rgba(0, 119, 255, 0) 0 1px, transparent 1.5px),
    radial-gradient(circle at 46% 86%,  rgba(0, 98, 255, 0.723) 0 1px, transparent 1.5px),
    radial-gradient(ellipse 72% 52% at 50% 8%, rgba(1, 63, 164, 0.394) 0%, transparent 60%),
    radial-gradient(ellipse 58% 52% at 18% 75%, rgba(0, 98, 255, 0) 0%, transparent 68%),
    radial-gradient(ellipse 52% 48% at 86% 64%, rgba(0, 140, 255, 0) 0%, transparent 70%);
  background-size: 240px 240px, 280px 280px, 220px 220px, auto, auto, auto;
  pointer-events: none;
  z-index: 0;
  animation: grain-drift 28s linear infinite;
}

body::after {
  content: '';
  position: fixed;
  inset: -8% -6% -10%;
  background:
    conic-gradient(from 210deg at 50% 44%, rgba(19, 0, 166, 0.05), rgba(5, 8, 182, 0.12), rgba(14, 165, 233, 0.05), rgba(56, 189, 248, 0.05)),
    radial-gradient(420px 280px at 12% 24%, rgba(3, 64, 162, 0.22), transparent 72%),
    radial-gradient(480px 300px at 86% 34%, rgba(34, 65, 238, 0.12), transparent 74%),
    radial-gradient(620px 320px at 52% 92%, rgba(37, 99, 235, 0.16), transparent 76%);
  filter: blur(26px);
  opacity: 0.72;
  pointer-events: none;
  z-index: 0;
  animation: ambient-shift 18s ease-in-out infinite;
}

/* Header – barra flutuante em formato de pílula */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  padding-top: max(1.25rem, env(safe-area-inset-top));
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: 1100px;
  padding: 0.65rem 1.5rem;
  padding-left: max(1.5rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
  background: rgb(10 15 26 / 0%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgb(96 165 250 / 10%);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  pointer-events: auto;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.header-inner:hover {
  border-color: rgba(96, 165, 250, 0.25);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4), 0 0 32px rgba(37, 99, 235, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
  filter: brightness(1.08) contrast(1.08);
  opacity: 1;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.25s;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-bright), var(--cyan));
  transform: scaleX(0);
  transform-origin: right;
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out-expo);
}

.nav a:hover {
  color: var(--blue-bright);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  flex-shrink: 0;
  margin-left: 0.5rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
}

.header-cta .btn-icon-wpp {
  width: 0.95rem;
  height: 0.95rem;
}

/* Botão hamburger – visível só no mobile */
.header-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.header-toggle:hover {
  border-color: rgba(96, 165, 250, 0.5);
  background: rgba(37, 99, 235, 0.1);
}

.header-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.header-inner.is-open .header-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-inner.is-open .header-toggle-bar:nth-child(2) {
  opacity: 0;
}

.header-inner.is-open .header-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nome da marca no header – visível só no mobile */
.header-brand-text {
  display: none;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-header {
  background: var(--blue-btn-end);
  border-radius: 9999px;
  box-shadow: none;
}

.btn-header:hover {
  transform: none;
  background: var(--blue-btn-start);
  box-shadow: none;
}

.btn-header--wpp {
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--blue-btn-end);
  box-shadow: none;
  transition: background-color 0.2s, border-color 0.2s;
}

.btn-header--wpp:hover {
  background: var(--blue-btn-start);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.btn:focus-visible,
.header-cta:focus-visible,
.hero-slider-btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.btn-cta--wpp {
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 45%), linear-gradient(90deg, var(--blue-btn-start), var(--blue-bright));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28),
              0 0 32px rgba(37, 99, 235, 0.5),
              0 6px 24px rgba(29, 78, 216, 0.45);
}

.btn-cta--wpp:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35),
              0 0 40px rgba(37, 99, 235, 0.6),
              0 8px 28px rgba(29, 78, 216, 0.55);
}

/* CTA de diagnostico segue estilo do header */
.section-cta .btn-cta--wpp {
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--blue-btn-end);
  box-shadow: none;
  transition: background-color 0.2s, border-color 0.2s;
}

.section-cta .btn-cta--wpp:hover {
  transform: none;
  background: var(--blue-btn-start);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.btn-icon-wpp {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.btn-hero {
  background: linear-gradient(90deg, var(--blue-btn-start), var(--blue-btn-end));
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.5);
  margin-top: 2rem;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.6);
}

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 12rem 2rem 2rem;
  background: transparent;
  overflow-x: hidden;
  overflow-y: visible;
  margin-bottom: 0;
}

/* Camadas do fundo – gradientes e luz */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 82% 58% at 50% 14%, rgba(56, 189, 248, 0.12) 0%, transparent 62%),
    radial-gradient(ellipse 54% 42% at 16% 62%, rgba(34, 211, 238, 0.11) 0%, transparent 70%),
    radial-gradient(ellipse 52% 40% at 84% 58%, rgba(37, 99, 235, 0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: hero-aurora-shift 14s ease-in-out infinite;
}

/* Orbs decorativos no hero */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(95px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
  animation: float 16s var(--ease-in-out) infinite;
}
.hero-orb--1 { width: 260px; height: 260px; background: rgba(6, 51, 123, 0.7); top: 14%; left: 10%; animation-delay: 0s; }
.hero-orb--2 { width: 220px; height: 220px; background: rgba(31, 111, 175, 0.52); top: 52%; right: 8%; animation-delay: -5s; }
.hero-orb--3 { width: 180px; height: 180px; background: rgba(96, 165, 250, 0.2); bottom: 12%; left: 48%; animation-delay: -9s; }

.hero-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.9) 0%, rgba(59, 130, 246, 0.35) 45%, rgba(59, 130, 246, 0) 100%);
  will-change: transform;
}

/* Grade de fundo – mais visível */
.hero::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  flex-shrink: 0;
  padding: 40px 2px 80px 0;
}

.hero-pre-slider {
  position: relative;
  z-index: 2;
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  margin: 0 auto;
  border-radius: 20px;
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.hero-pre-content {
  padding: 1.35rem 1.35rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-pre-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(186, 230, 253, 0.95);
  border: 1px solid rgba(96, 165, 250, 0.32);
  background: rgba(30, 64, 175, 0.12);
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  margin-bottom: 0.7rem;
}

.hero-pre-title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #f4f9ff;
  max-width: none;
}

.hero-pre-lead {
  margin: 0 0 0.7rem;
  font-size: 0.93rem;
  line-height: 1.55;
  color: rgba(236, 245, 255, 0.9);
}

.hero-pre-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.52rem;
}

.hero-pre-points li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.88rem;
  line-height: 1.48;
  color: rgba(226, 236, 248, 0.86);
}

.hero-pre-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.54rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.95);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.45);
}

.hero-pre-points strong {
  color: #e0efff;
  font-weight: 700;
}

.hero-pre-closing {
  margin: 0.78rem 0 0;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(147, 197, 253, 0.22);
  font-size: 0.87rem;
  line-height: 1.5;
  color: rgba(203, 223, 246, 0.88);
}

/* Destaque de leitura: bloco "Tecnologia como vantagem..." maior */
#direcao-estrategica .hero-pre-kicker {
  font-size: 0.72rem;
}

#direcao-estrategica .hero-pre-title {
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  line-height: 1.18;
}

#direcao-estrategica .hero-pre-lead {
  font-size: 1.02rem;
  line-height: 1.62;
}

#direcao-estrategica .hero-pre-points li {
  font-size: 0.95rem;
  line-height: 1.55;
}

#direcao-estrategica .hero-pre-closing {
  font-size: 0.96rem;
  line-height: 1.58;
}

.hero-pre-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.58;
  color: rgba(226, 236, 248, 0.86);
}

.hero-pre-media {
  position: relative;
  min-height: 220px;
  border-left: none;
  border-radius: 20px;
  overflow: hidden;
}

.hero-pre-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.section-direcao {
  padding: 2.6rem 1.5rem 3.8rem;
}

.section-slider-servicos {
  padding: 1.8rem 1.5rem 3.4rem;
}

.section-slider-servicos-header {
  margin-bottom: 1.2rem;
}

.section-slider-servicos .hero-slider {
  padding: 1.05rem 0 1.85rem;
  min-height: 420px;
}

.section-slider-servicos .hero-slide-card {
  flex-basis: 340px;
  border-radius: 18px;
  transform: scale(0.9);
  opacity: 0.74;
}

.section-slider-servicos .hero-slide-card--active {
  transform: scale(1.1);
}

.section-slider-servicos .hero-slide-card--active:hover {
  transform: scale(1.12);
}

.section-slider-servicos .hero-slide-img {
  aspect-ratio: 16 / 10;
}

.section-slider-servicos .hero-slide-body {
  background: linear-gradient(180deg, rgba(8, 13, 24, 0.94), rgba(7, 11, 20, 0.98));
  border-top: 1px solid rgba(96, 165, 250, 0.2);
}

.section-slider-servicos .hero-slider-btn {
  border: 1px solid rgba(147, 197, 253, 0.4);
  background: rgba(10, 20, 38, 0.9);
}

@media (max-width: 900px) {
  .section-slider-servicos {
    padding-top: 1.4rem;
    padding-bottom: 2.2rem;
  }

  .section-slider-servicos-header {
    margin-bottom: 0.9rem;
  }

  .section-slider-servicos .hero-slider {
    min-height: 0;
    padding: 0.9rem 0 1.2rem;
  }
}

@media (max-width: 600px) {
  .section-slider-servicos .section-title {
    font-size: clamp(1.45rem, 6vw, 1.95rem);
  }

  .section-slider-servicos .section-sublabel {
    font-size: 0.92rem;
  }
}

.hero-content::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(78vw, 720px);
  height: min(78vw, 720px);
  transform: translate(-50%, -46%);
  border-radius: 50%;
  border: 1px solid rgba(147, 197, 253, 0.22);
  box-shadow:
    0 0 90px rgba(59, 130, 246, 0.14),
    inset 0 0 70px rgba(56, 189, 248, 0.07);
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
  animation: halo-spin 30s linear infinite;
}

.hero-content::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(62vw, 560px);
  height: min(62vw, 560px);
  transform: translate(-50%, -46%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 45%, rgba(147, 197, 253, 0.22), transparent 48%),
    conic-gradient(from 40deg, rgba(59, 130, 246, 0.2), rgba(34, 211, 238, 0.1), rgba(37, 99, 235, 0.2), rgba(59, 130, 246, 0.2));
  filter: blur(42px);
  opacity: 0.24;
  pointer-events: none;
  z-index: -2;
  animation: halo-breathe 10s ease-in-out infinite;
}

/* Slider de cards abaixo do hero */
.hero-slider-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: 0 3.5rem;
  margin: 1rem auto 0;
  flex-shrink: 0;
}

/* Container estático: sempre 3 slots visíveis (esquerda | PRINCIPAL | direita) */
.hero-slider {
  overflow: hidden;
  padding: 1rem 0 1.5rem;
  position: relative;
  min-height: 380px;
}

.hero-slider-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-left: calc(50% - 160px);
  padding-right: calc(50% - 160px);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hero-slide-card {
  position: relative;
  flex: 0 0 320px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s, opacity 0.35s;
  transform: scale(0.88);
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  min-height: 0;
  /* Borda espelhada / chrome: gradiente na borda */
  background: linear-gradient(rgba(10, 15, 26, 0.95), rgba(10, 15, 26, 0.92)) padding-box,
              linear-gradient(145deg,
                rgba(255, 255, 255, 0.22) 0%,
                rgba(147, 197, 253, 0.15) 25%,
                rgba(96, 165, 250, 0.35) 50%,
                rgba(59, 130, 246, 0.2) 75%,
                rgba(30, 64, 175, 0.4) 100%) border-box;
  border: 1px solid transparent;
  box-shadow: none;
}

/* Brilho extra no topo-esquerda para efeito espelhado */
.hero-slide-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, transparent 40%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.8;
}

/* Card central em destaque – maior, borda espelhada mais intensa */
.hero-slide-card--active {
  transform: scale(1.08);
  opacity: 1;
  z-index: 1;
  background: linear-gradient(rgba(12, 18, 30, 0.98), rgba(10, 15, 26, 0.95)) padding-box,
              linear-gradient(145deg,
                rgba(255, 255, 255, 0.28) 0%,
                rgba(147, 197, 253, 0.25) 20%,
                rgba(96, 165, 250, 0.5) 50%,
                rgba(59, 130, 246, 0.3) 80%,
                rgba(30, 64, 175, 0.5) 100%) border-box;
  box-shadow: none;
}

.hero-slide-card--active::before {
  opacity: 1;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, transparent 35%, transparent 100%);
}

.hero-slide-card:hover {
  opacity: 0.95;
}

.hero-slide-card--active:hover {
  transform: scale(1.1);
  box-shadow: none;
}

.hero-slide-img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/3;
  flex-shrink: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.hero-slide-img {
  overflow: hidden;
}

.hero-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}

.hero-slide-card:hover .hero-slide-img img,
.hero-slide-card--active .hero-slide-img img {
  transform: scale(1.05);
}

.hero-slide-body {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.5rem;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-slide-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  flex-shrink: 0;
}

.hero-slide-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1 1 auto;
  min-height: 0;
}

.hero-slide-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue-bright);
  text-decoration: none;
  transition: color 0.25s, gap 0.25s, opacity 0.2s;
}

.hero-slide-link::after {
  content: '→';
  font-weight: 700;
  transition: transform 0.25s var(--ease-out-expo);
}

.hero-slide-link:hover {
  color: var(--cyan);
  gap: 0.5rem;
}

.hero-slide-link:hover::after {
  transform: translateX(3px);
}

.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: border-color 0.2s, background 0.2s;
}

.hero-slider-btn svg {
  width: 24px;
  height: 24px;
}

.hero-slider-btn:hover {
  border-color: rgba(96, 165, 250, 0.6);
  background: rgba(37, 99, 235, 0.2);
  box-shadow: none;
  transform: translateY(-50%) scale(1.05);
}

.hero-slider-btn:active {
  transform: translateY(-50%) scale(0.98);
}

.hero-slider-prev {
  left: 0;
}

.hero-slider-next {
  right: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.4rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: var(--text);
  animation: none;
}

.hero-title-highlight {
  display: inline-block;
  background: linear-gradient(124deg, #32a0f3 0%, #2977ee 40%, #004490 70%, #3b82f6 100%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: none;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  animation: none;
}

.hero-subtitle--second {
  margin-top: 0.85rem;
}

.hero-cta-secondary {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.hero-cta-secondary:hover {
  color: var(--blue-bright);
}

.hero-solucoes-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}

.hero-solucoes-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.hero-solucoes-intro {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto;
}

.hero-slider-cta {
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
  flex-shrink: 0;
}

/* Reveal no scroll */
.section-reveal {
  --scroll-progress: 0;
  --reveal-offset: 0px;
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
  will-change: auto;
}

.section-reveal.is-revealed {
  --reveal-offset: 0px;
  opacity: 1;
  filter: none;
}

.section-reveal.is-revealed.is-inview {
  transform: none;
}

/* Modo estabilidade visual: evita flicker em camadas pesadas */
body::before,
body::after,
.hero::before,
.hero::after,
.hero-orb,
.hero-content::before,
.hero-content::after,
.section-problema::before,
.section-metodo::before,
.section-fazemos::before,
.section-quem::before,
.section-cta::before {
  animation: none !important;
}

.section-reveal {
  filter: none;
  transition: none;
}

.section-reveal.is-revealed.is-inview {
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .section-reveal {
    --scroll-progress: 0;
    --reveal-offset: 0px;
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    will-change: auto;
  }
  .hero-title, .hero-subtitle { animation: none; }
  .hero-orb { animation: none; }
  .hero::before { animation: none; }
  .hero::after { animation: none; }
  body::before { animation: none; }
  body::after { animation: none; }
  .hero-content::before { animation: none; }
  .hero-content::after { animation: none; }
  .section-problema::before { animation: none; }
  .section-metodo::before { animation: none; }
  .section-fazemos::before { animation: none; }
  .section-quem::before { animation: none; }
  .section-cta::before { animation: none; }
  .hero-title-highlight { animation: none; }
}

/* Seção O problema real */
.section-problema {
  background: transparent;
  padding: 5rem 1.5rem 5.5rem;
  position: relative;
  overflow: hidden;
}

.section-problema::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 260px at 15% 18%, rgba(59, 130, 246, 0.12), transparent 72%),
    radial-gradient(560px 300px at 88% 78%, rgba(34, 211, 238, 0.08), transparent 74%);
  pointer-events: none;
  z-index: 0;
  animation: section-glow-drift 16s ease-in-out infinite;
}

.section-problema::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1080px, 88%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.4), transparent);
  pointer-events: none;
  z-index: 0;
}

.section-problema-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-problema-header {
  margin-bottom: 2rem;
}

.foco-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.1rem;
  align-items: stretch;
}

.foco-main-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  background:
    radial-gradient(130% 90% at 100% 0%, rgba(59, 130, 246, 0.14), transparent 62%),
    linear-gradient(165deg, rgba(9, 14, 26, 0.9), rgba(6, 10, 20, 0.94));
  padding: 1.6rem 1.4rem 1.45rem;
  box-shadow: 0 16px 36px rgba(2, 6, 16, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.foco-main-card::after {
  content: '';
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.05rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.35), rgba(56, 189, 248, 0.08), transparent);
}

.foco-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 0.75rem;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.24);
  background: rgba(37, 99, 235, 0.12);
  color: rgba(226, 236, 248, 0.92);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
}

.foco-main-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #f8fbff;
  max-width: 17ch;
}

.foco-main-desc {
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: rgba(226, 236, 248, 0.9);
}

.foco-main-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.foco-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(235, 242, 250, 0.9);
  border: 1px solid rgba(96, 165, 250, 0.28);
  background: rgba(37, 99, 235, 0.12);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
}

.foco-main-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 0.6rem;
}

.foco-action {
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  background: rgba(8, 13, 24, 0.45);
  color: rgba(226, 236, 248, 0.92);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.38rem 0.56rem;
}

.foco-side-list {
  display: grid;
  gap: 0.8rem;
}

.foco-side-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 0.75rem;
  align-items: start;
  border-radius: 14px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  background: linear-gradient(180deg, rgba(9, 14, 24, 0.86), rgba(7, 11, 20, 0.9));
  padding: 0.9rem 0.95rem 0.95rem;
}

.foco-side-index {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.34);
  background: rgba(30, 64, 175, 0.2);
  color: rgba(226, 236, 248, 0.92);
  font-size: 0.74rem;
  font-weight: 700;
}

.foco-side-body {
  min-width: 0;
}

.foco-side-title {
  margin: 0 0 0.35rem;
  font-size: 0.96rem;
  font-weight: 600;
  color: #ebf2fa;
}

.foco-side-desc {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.4;
  color: rgba(226, 236, 248, 0.78);
}

/* Seção Nosso método */
.section-metodo {
  background: transparent;
  padding: 5rem 1.5rem 5.5rem;
  position: relative;
  overflow: hidden;
}

.section-metodo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 320px at 20% 65%, rgba(37, 99, 235, 0.12), transparent 72%),
    radial-gradient(460px 280px at 82% 22%, rgba(56, 189, 248, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: section-glow-drift 15s ease-in-out infinite reverse;
}

.section-metodo::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1080px, 88%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.38), transparent);
  pointer-events: none;
  z-index: 0;
}

.section-metodo-inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-metodo-top {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.section-header.section-metodo-header {
  margin: 0 auto;
  text-align: center;
  width: 100%;
  max-width: 860px;
}

.section-header.section-metodo-header .section-title {
  font-weight: 300;
}

.metodo-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
}

.section-metodo-nav {
  display: inline-flex;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 0.4rem;
}

.metodo-nav-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(226, 232, 240, 0.82);
  font-size: 1rem;
  border-right: 1px solid rgba(148, 163, 184, 0.18);
}

.metodo-nav-btn:last-child {
  border-right: none;
}

.metodo-carousel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

.metodo-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  grid-template-areas:
    "icon title index"
    "icon desc index";
  column-gap: 1rem;
  row-gap: 0.25rem;
  align-items: center;
  min-height: 0;
  padding: 1rem 1.1rem 0.95rem;
  border-radius: 12px;
  border: none;
  background:
    radial-gradient(140% 90% at 100% 0%, rgba(59, 130, 246, 0.16), transparent 58%),
    linear-gradient(269deg, rgb(9 14 25 / 55%), rgb(7 12 23 / 37%));
  box-shadow: 0 10px 30px rgba(2, 6, 16, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.metodo-card-icon {
  grid-area: icon;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  font-size: 1.15rem;
  color: #7dd3fc;
  background: linear-gradient(180deg, rgba(11, 27, 54, 0.9), rgba(8, 21, 41, 0.95));
  border: 1px solid rgba(96, 165, 250, 0.3);
  box-shadow: inset 0 1px 0 rgba(186, 230, 253, 0.16);
}

.metodo-card-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.metodo-card-title {
  grid-area: title;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  color: #f8fafc;
}

.metodo-card-desc {
  grid-area: desc;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.78);
  max-width: none;
}

.metodo-card-index {
  grid-area: index;
  position: static;
  align-self: center;
  justify-self: end;
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  line-height: 1;
  font-weight: 800;
  background: linear-gradient(
    225deg,
    rgb(0 120 255 / 24%) 0%,
    rgb(0 120 255 / 18%) 52%,
    rgb(0 120 255 / 0%) 78%,
    rgb(0 120 255 / 0%) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
  padding-left: 0.75rem;
  white-space: nowrap;
  pointer-events: none;
}

.metodo-visual {
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 13, 24, 0.92), rgba(7, 11, 20, 0.95));
  box-shadow: 0 12px 26px rgba(2, 6, 16, 0.28);
  min-height: 100%;
}

.metodo-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

/* Seção O que a Wosch Software resolve */
.section-fazemos {
  background: transparent;
  padding: 2.4rem 1.5rem 6rem;
  position: relative;
  overflow: hidden;
  margin-top: -2px;
}

.section-fazemos::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(540px 300px at 12% 30%, rgba(59, 130, 246, 0.14), transparent 72%),
    radial-gradient(620px 320px at 88% 72%, rgba(14, 165, 233, 0.1), transparent 75%);
  pointer-events: none;
  z-index: 0;
  animation: section-glow-drift 18s ease-in-out infinite;
}

.section-fazemos::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1080px, 88%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.42), transparent);
  pointer-events: none;
  z-index: 0;
}

.section-fazemos-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fazemos-map {
  --fazemos-connector-gap: 46px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px minmax(0, 1fr);
  gap: 1.6rem;
  align-items: center;
  isolation: isolate;
}

.fazemos-col {
  position: relative;
  display: grid;
  grid-template-rows: repeat(3, minmax(124px, auto));
  gap: 0.95rem;
  z-index: 2;
  
}

.fazemos-col--left::before,
.fazemos-col--right::before {
  content: '';
  position: absolute;
  top: 50%;
  width: var(--fazemos-connector-gap);
  height: calc(100% - 84px);
  transform: translateY(-50%);
  border: 1px solid rgba(147, 197, 253, 0.24);
  pointer-events: none;
  z-index: 0;
  animation: connector-rail-pulse 2.3s ease-in-out infinite;
}

.fazemos-col--left::before {
  right: calc(var(--fazemos-connector-gap) * -1);
  border-left: none;
  border-radius: 0 18px 18px 0;
}

.fazemos-col--right::before {
  left: calc(var(--fazemos-connector-gap) * -1);
  border-right: none;
  border-radius: 18px 0 0 18px;
}

.fazemos-item {
  position: relative;
  padding: 1.35rem 1.2rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(147, 197, 253, 0.2);
  background: linear-gradient(180deg, rgba(10, 15, 26, 0.9), rgba(8, 13, 24, 0.9));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  min-height: 122px;
  z-index: 2;
  
}

.fazemos-col--left .fazemos-item::after,
.fazemos-col--right .fazemos-item::after {
  content: '';
  position: absolute;
  top: 50%;
  width: var(--fazemos-connector-gap);
  height: 2px;
  background:
    linear-gradient(90deg, rgba(147, 197, 253, 0.22), rgba(147, 197, 253, 0.22)),
    linear-gradient(90deg, rgba(37, 99, 235, 0), rgba(125, 211, 252, 0.95), rgba(37, 99, 235, 0));
  background-size: 100% 1px, 200% 2px;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  z-index: -1;
  animation: connector-line-flow 2.4s linear infinite;
}

.fazemos-col--left .fazemos-item::after {
  right: calc(var(--fazemos-connector-gap) * -1);
}

.fazemos-col--right .fazemos-item::after {
  left: calc(var(--fazemos-connector-gap) * -1);
}

.fazemos-item-title {
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 600;
  color: #f4f8ff;
  margin: 0 0 0.45rem;
}

.fazemos-item-desc {
  font-size: 0.93rem;
  line-height: 1.5;
  color: rgba(226, 236, 248, 0.8);
  margin: 0;
}

.fazemos-center {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.fazemos-core {
  position: relative;
  width: 260px;
  min-height: 170px;
  border-radius: 20px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(147, 197, 253, 0.42);
  background: linear-gradient(140deg, rgba(37, 99, 235, 0.95), rgba(14, 165, 233, 0.9));
  box-shadow: 0 0 0 1px rgba(191, 219, 254, 0.25) inset, 0 14px 34px rgba(29, 78, 216, 0.38);
}

.fazemos-core::before,
.fazemos-core::after {
  content: none;
}

.fazemos-core-logo {
  width: 142px;
  height: 142px;
  object-fit: contain;
  display: block;
  margin-bottom: 0;
  opacity: 0.98;
}

/* Padrão de título para todas as seções (badge + título gradiente + sublabel) */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header.section-fazemos-header { margin-bottom: 3rem; }
.section-header.section-quem-header { margin-bottom: 2.5rem; }
.section-header.section-metodo-header { margin-bottom: 2.5rem; }
.section-header.section-cta-header { margin-bottom: 2rem; }
.section-problema .section-header { margin-bottom: 2rem; }

.section-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(147, 197, 253, 0.95);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(96, 165, 250, 0.3);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.12);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
}

.section-header:hover .section-badge {
  box-shadow: 0 0 32px rgba(37, 99, 235, 0.2);
  border-color: rgba(96, 165, 250, 0.4);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
  background: linear-gradient(180deg, #ffffff 0%, #e0e7ff 45%, #c7d2fe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.section-sublabel {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin: 0;
}

.section-fazemos-tagline {
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-fazemos-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  position: relative;
  background: rgba(10, 15, 26, 0.92);
  border-radius: 14px;
  padding: 2rem;
  /* Uma borda só: topo, esquerda e baixo azul; direita em degradê (azul → transparente) */
  border: 1px solid rgba(96, 165, 250, 0.6);
  border-right: none;
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.18),
              0 4px 24px rgba(0, 0, 0, 0.3);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  overflow: hidden;
}

/* Lado direito da mesma borda: cor azul que desce e vira transparente */
.card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  border-radius: 0 13px 13px 0;
  background: linear-gradient(180deg,
    rgba(96, 165, 250, 0.6) 0%,
    rgba(96, 165, 250, 0.3) 50%,
    transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.card > * {
  position: relative;
  z-index: 2;
}

.card-text {
  padding: 1.75rem 1.5rem;
}

.card:hover {
  border-color: rgba(147, 197, 253, 0.8);
  box-shadow: 0 0 36px rgba(37, 99, 235, 0.28),
              0 8px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.card:hover::after {
  background: linear-gradient(180deg,
    rgba(147, 197, 253, 0.75) 0%,
    rgba(147, 197, 253, 0.35) 50%,
    transparent 100%);
}

.card-text .card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-bright);
}

.card-text .card-icon svg {
  width: 32px;
  height: 32px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.9rem;
  text-align: center;
}

.card-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  margin: 0;
}

.card-image {
  padding: 0;
  overflow: hidden;
  display: flex;
}

.card-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: 13px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.card:hover .card-image-wrap img {
  transform: scale(1.07);
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}

/* Seção Quem atendemos */
.section-quem {
  background: transparent;
  padding: 5rem 1.5rem 5.5rem;
  position: relative;
  overflow: hidden;
}

.section-quem::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 300px at 82% 26%, rgba(59, 130, 246, 0.11), transparent 72%),
    radial-gradient(460px 280px at 18% 78%, rgba(125, 211, 252, 0.08), transparent 74%);
  pointer-events: none;
  z-index: 0;
  animation: section-glow-drift 17s ease-in-out infinite;
}

.section-quem::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1080px, 88%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147, 197, 253, 0.4), transparent);
  pointer-events: none;
  z-index: 0;
}

.section-quem-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-quem-header {
  margin-bottom: 2.4rem;
}

.section-quem-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.95fr;
  gap: 1rem;
  align-items: stretch;
}

.quem-spotlight {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(125, 211, 252, 0.28);
  padding: clamp(1.4rem, 2.6vw, 2rem);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(620px 340px at 10% 0%, rgba(59, 130, 246, 0.18), transparent 62%),
    radial-gradient(520px 300px at 90% 100%, rgba(14, 165, 233, 0.12), transparent 66%),
    linear-gradient(165deg, rgba(9, 16, 30, 0.96) 0%, rgba(7, 12, 24, 0.95) 55%, rgba(8, 14, 27, 0.98) 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(191, 219, 254, 0.08);
}

.quem-spotlight > * {
  position: relative;
  z-index: 1;
}

.quem-spotlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(235, 242, 250, 0.9);
  border: 1px solid rgba(147, 197, 253, 0.24);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: rgba(10, 15, 26, 0.48);
}

.quem-spotlight-chip::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.7);
}

.quem-spotlight-title {
  font-size: clamp(1.55rem, 3.1vw, 2.25rem);
  line-height: 1.14;
  margin: 1.15rem 0 0.85rem;
  letter-spacing: -0.03em;
  max-width: 17ch;
  color: #f8fbff;
}

.quem-spotlight-desc {
  font-size: 1rem;
  line-height: 1.62;
  color: rgba(226, 236, 248, 0.82);
  max-width: 55ch;
  margin: 0 0 1.2rem;
}

.quem-spotlight-btn {
  width: fit-content;
  text-decoration: none;
  color: #f8fbff;
  font-weight: 600;
  font-size: 0.94rem;
  border: 1px solid rgba(147, 197, 253, 0.26);
  border-radius: 999px;
  padding: 0.7rem 1.05rem;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.9), rgba(9, 14, 24, 0.9));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s var(--ease-out-expo), border-color 0.2s;
}

.quem-spotlight-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(147, 197, 253, 0.45);
}

.quem-map-bg {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
  z-index: 0;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.quem-map-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 95%, rgba(37, 99, 235, 0.14), transparent 70%),
    linear-gradient(180deg, rgba(8, 14, 26, 0.05), rgba(7, 11, 20, 0.22));
}

.quem-brazil-map {
  width: min(62%, 410px);
  height: auto;
  transform: translate(40%, 14%);
  opacity: 0.68;
  filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.24));
}

.quem-brazil-state {
  fill: rgba(59, 130, 246, 0.17);
  stroke: rgba(125, 211, 252, 0.48);
  stroke-width: 0.55;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.quem-side-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.95rem;
}

.quem-proof-card,
.quem-quote-card {
  border-radius: 20px;
  border: 1px solid rgba(125, 211, 252, 0.25);
  background:
    radial-gradient(140% 100% at 100% 0%, rgba(59, 130, 246, 0.14), transparent 62%),
    linear-gradient(165deg, rgba(10, 16, 30, 0.9), rgba(8, 13, 24, 0.92));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(191, 219, 254, 0.06);
}

.quem-proof-card {
  padding: 1.35rem 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 218px;
}

.quem-proof-text {
  margin: 0;
  color: rgba(240, 246, 255, 0.9);
  line-height: 1.48;
  font-size: 1rem;
  font-weight: 500;
}

.quem-proof-number {
  font-size: clamp(2.8rem, 7vw, 4.7rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: rgba(255, 255, 255, 0.08);
  margin: 0.9rem 0 0.25rem;
}

.quem-proof-label {
  font-size: 0.86rem;
  color: rgba(226, 236, 248, 0.72);
}

.quem-quote-card {
  padding: 1rem;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 220px;
}

.quem-quote-thumb {
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.28);
}

.quem-quote-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.quem-quote-text {
  margin: 0 0 0.9rem;
  color: rgba(245, 249, 255, 0.95);
  line-height: 1.5;
  font-size: 1.06rem;
  font-weight: 500;
}

.quem-quote-author {
  margin: 0;
  color: rgba(203, 213, 225, 0.76);
  font-size: 0.84rem;
}

/* Seção CTA – Diagnóstico */
@keyframes cta-grid-shift {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(24px, 16px, 0); }
}

@keyframes cta-scan-move {
  0% { transform: translateX(-20%); opacity: 0; }
  20% { opacity: 0.08; }
  80% { opacity: 0.08; }
  100% { transform: translateX(120%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .cta-card::before,
  .cta-card::after {
    animation: none;
  }
}

.section-cta {
  background: transparent;
  padding: 4rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 340px at 50% 86%, rgba(37, 99, 235, 0.16), transparent 74%),
    radial-gradient(420px 220px at 80% 20%, rgba(14, 165, 233, 0.09), transparent 72%);
  pointer-events: none;
  z-index: 0;
  animation: section-glow-drift 20s ease-in-out infinite reverse;
}

.section-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Fundo continuo: remove divisores/overlays por secao */
.section-problema::before,
.section-problema::after,
.section-metodo::before,
.section-metodo::after,
.section-fazemos::before,
.section-fazemos::after,
.section-quem::before,
.section-quem::after,
.section-cta::before {
  content: none;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: 20px;
  display: flex;
  align-items: center;
  min-height: clamp(280px, 38vw, 360px);
  text-align: left;
  background: linear-gradient(165deg,
    rgba(11, 18, 31, 0.98) 0%,
    rgba(14, 25, 42, 0.96) 48%,
    rgba(15, 30, 58, 0.9) 100%);
  border: 1px solid rgba(96, 165, 250, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: repeating-linear-gradient(120deg, rgba(125, 211, 252, 0.07) 0 1px, transparent 1px 22px);
  pointer-events: none;
  animation: cta-grid-shift 11s linear infinite;
}

.cta-card::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34%;
  left: 0;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.12), transparent);
  pointer-events: none;
  animation: cta-scan-move 7s ease-in-out infinite;
}

.cta-card:hover {
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.cta-main {
  padding: 0.6rem 0.3rem 0.4rem;
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.cta-card .section-badge {
  margin-bottom: 1rem;
}

.cta-card-title {
  font-size: clamp(1.7rem, 3.7vw, 2.35rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 1rem;
  max-width: 18ch;
}

.cta-card-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(226, 236, 248, 0.86);
  max-width: 52ch;
  margin: 0 0 1.35rem;
}

.cta-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.3rem;
}

.cta-benefit-pill {
  border: 1px solid rgba(147, 197, 253, 0.24);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  font-size: 0.8rem;
  color: rgba(226, 236, 248, 0.9);
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn-cta-ghost {
  border: 1px solid rgba(147, 197, 253, 0.28);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.38));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn-cta-ghost:hover {
  border-color: rgba(147, 197, 253, 0.44);
}

.cta-footnote {
  margin: 0.95rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(203, 213, 225, 0.84);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  background: linear-gradient(90deg, var(--blue-btn-start), var(--blue-bright));
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 99, 235, 0.5);
}

.btn-cta--wpp {
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 45%), linear-gradient(90deg, var(--blue-btn-start), var(--blue-bright));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28),
              0 0 32px rgba(37, 99, 235, 0.5),
              0 6px 24px rgba(29, 78, 216, 0.45);
}

.btn-cta--wpp:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35),
              0 0 40px rgba(37, 99, 235, 0.6),
              0 8px 28px rgba(29, 78, 216, 0.55);
}

.cta-side {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}

.cta-side-card {
  border-radius: 14px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  background: linear-gradient(180deg, rgba(9, 14, 24, 0.78), rgba(7, 11, 20, 0.82));
  padding: 1.05rem 1rem;
}

.cta-side-title {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f1f5f9;
}

.cta-side-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.cta-side-list li {
  position: relative;
  margin: 0;
  padding-left: 1rem;
  font-size: 0.87rem;
  line-height: 1.45;
  color: rgba(226, 236, 248, 0.82);
}

.cta-side-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(96, 165, 250, 0.8);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

.cta-side-highlight {
  margin: 0 0 0.45rem;
  font-size: 0.96rem;
  font-weight: 600;
  color: #f8fbff;
}

.cta-side-note {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(203, 213, 225, 0.8);
}

.cta-side-mini {
  margin: 0.7rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(186, 230, 253, 0.88);
}

/* Footer */
.footer {
  background: rgba(6, 11, 22, 0.45);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 3rem 1.5rem 2.5rem;
  border-top: 1px solid rgba(96, 165, 250, 0.08);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-logo:hover {
  opacity: 0.9;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  max-width: 480px;
  min-height: 56px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(1.05) contrast(1.05);
  display: block;
}

.footer-redes {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-redes-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.footer-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease-out-expo), box-shadow 0.25s;
}

.footer-icon svg {
  width: 20px;
  height: 20px;
}

.footer-icon:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text);
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.footer-icon-top {
  border-color: var(--blue-bright);
  color: var(--text);
}

.footer-icon-top:hover {
  border-color: var(--blue-glow);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.35);
  transform: scale(1.08);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.12), transparent);
  margin: 2rem auto 1.5rem;
  max-width: 1100px;
}

.footer-bottom {
  padding: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-copy {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.5;
}

/* Responsivo */
@media (max-width: 900px) {
  .header {
    padding: 0.75rem 0.75rem;
    padding-top: max(0.75rem, env(safe-area-inset-top));
  }

  .header-inner {
    position: relative;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    gap: 0;
    justify-content: space-between;
    align-items: center;
  }

  /* "Wosch Software" centralizado no meio do header (só quando menu fechado) */
  .header-inner .header-brand-text {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
    white-space: nowrap;
    pointer-events: none;
  }

  .header-inner.is-open .header-brand-text {
    display: none;
  }

  .header-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
  }

  /* Logo visível na barra no mobile (esquerda) */
  .header-inner .logo {
    display: flex;
    order: 0;
  }

  /* Menu fechado: CTA escondido */
  .header-inner .header-cta {
    display: none;
    order: 4;
    margin-left: 0;
  }

  .header-inner.is-open .header-cta {
    display: inline-flex;
    order: 4;
    width: 100%;
    margin-top: 0.75rem;
    margin-left: 0;
    padding: 0.75rem 1rem;
    justify-content: center;
    min-height: 48px;
  }

  .header-inner .nav {
    order: 3;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
  }

  .header-inner.is-open .nav {
    max-height: 70vh;
    opacity: 1;
    padding: 1rem 0 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0.5rem;
  }

  .header-inner .nav a {
    display: flex;
    align-items: center;
    padding: 0.85rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    min-height: 48px;
  }

  .header-inner .nav a:last-of-type {
    border-bottom: none;
  }

  .nav a {
    font-size: 1rem;
  }

  .hero {
    padding: 10rem 1rem 4rem;
  }

  .hero-pre-slider {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
  }

  .hero-pre-content {
    padding: 1rem 0.95rem;
  }

  .hero-pre-title {
    max-width: 100%;
    font-size: 1.12rem;
  }

  .hero-pre-lead { font-size: 0.9rem; }
  .hero-pre-points li { font-size: 0.85rem; }
  .hero-pre-closing { font-size: 0.84rem; }

  .hero-pre-media {
    min-height: 170px;
    border-left: none;
    border-top: 1px solid rgba(191, 219, 254, 0.14);
    border-radius: 0 0 20px 20px;
  }

  /* No mobile: wrap ocupa a largura do hero (sem estourar), assim o slider fica centralizado */
  .hero-slider-wrap {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
    overflow: hidden;
  }

  /* Slider e track ocupam 100% do wrap para centralização correta */
  .hero-slider {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-slider-track {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding-left: 4%;
    padding-right: 4%;
    gap: 24px;
  }

  /* Card ocupa 100% da área útil do track (92% do slider) para ficar centralizado */
  .hero-slide-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-slide-body {
    text-align: center;
    align-items: center;
  }

  .hero-slide-link {
    justify-content: center;
  }

  .hero-slider-btn {
    width: 36px;
    height: 36px;
    top: 50%;
  }

  .hero-slider-btn svg {
    width: 20px;
    height: 20px;
  }

  .section-metodo-top {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
  }

  .section-metodo-nav {
    align-self: flex-end;
  }

  .metodo-carousel {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .metodo-layout {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .metodo-card {
    min-height: 0;
  }

  .metodo-card-title {
    font-size: 1.35rem;
  }

  .section-metodo {
    padding: 4rem 1rem 4.5rem;
  }

  .foco-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .foco-main-card {
    padding: 1.3rem 1.1rem 1.15rem;
  }

  .foco-main-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-fazemos-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .fazemos-map {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .fazemos-col--left::before,
  .fazemos-col--left::after,
  .fazemos-col--right::before,
  .fazemos-col--right::after,
  .fazemos-col--left .fazemos-item::after,
  .fazemos-col--right .fazemos-item::after,
  .fazemos-core::before,
  .fazemos-core::after {
    display: none;
  }

  .fazemos-center {
    order: -1;
    margin-bottom: 0.25rem;
  }

  .fazemos-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .fazemos-item {
    min-height: 116px;
    padding: 1rem 0.9rem 0.95rem;
  }

  .fazemos-item-title {
    font-size: 0.98rem;
  }

  .fazemos-item-desc {
    font-size: 0.84rem;
  }

  .section-fazemos {
    padding: 3.5rem 1rem 4rem;
  }

  .section-fazemos-tagline {
    margin-bottom: 2.5rem;
  }

  .card-text {
    padding: 2rem 1.5rem;
  }

  .section-quem-inner {
    gap: 0;
  }

  .section-quem-layout {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .quem-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
  }

  .section-quem {
    padding: 3.5rem 1rem 4rem;
  }

  .quem-spotlight {
    min-height: 390px;
  }

  .quem-side-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
  }

  .quem-proof-card,
  .quem-quote-card {
    min-height: 210px;
  }

  .section-cta {
    padding: 3rem 1rem 4rem;
  }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 1.4rem 1.2rem;
    gap: 0.9rem;
  }

  .cta-main {
    padding: 0.2rem 0.1rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn-cta {
    justify-content: center;
  }

  .cta-card-title {
    max-width: none;
  }

  .cta-side {
    grid-template-rows: auto;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .header {
    padding-left: max(0.75rem, env(safe-area-inset-left));
    padding-right: max(0.75rem, env(safe-area-inset-right));
  }

  .hero {
    padding-top: 8rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-pre-slider {
    margin: 0 auto;
  }

  .hero-pre-content {
    padding: 0.9rem 0.85rem;
  }

  .hero-pre-title {
    font-size: 1.02rem;
  }

  .hero-pre-kicker { font-size: 0.6rem; letter-spacing: 0.12em; }
  .hero-pre-lead { font-size: 0.84rem; }
  .hero-pre-points { gap: 0.42rem; }
  .hero-pre-points li { font-size: 0.8rem; padding-left: 0.85rem; }
  .hero-pre-closing { font-size: 0.79rem; }

  #direcao-estrategica .hero-pre-title {
    font-size: 1.2rem;
  }

  #direcao-estrategica .hero-pre-lead {
    font-size: 0.93rem;
  }

  #direcao-estrategica .hero-pre-points li {
    font-size: 0.88rem;
  }

  #direcao-estrategica .hero-pre-closing {
    font-size: 0.86rem;
  }

  .hero-pre-media {
    min-height: 150px;
  }

  .hero-slider-wrap {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .section-problema,
  .section-direcao,
  .section-slider-servicos,
  .section-metodo,
  .section-fazemos,
  .section-quem,
  .section-cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .foco-main-title {
    font-size: 1.4rem;
  }

  .foco-main-desc {
    margin-bottom: 0.9rem;
  }

  .foco-main-metrics {
    grid-template-columns: 1fr;
  }

  .foco-side-item {
    grid-template-columns: 26px 1fr;
    gap: 0.65rem;
    padding: 0.9rem 0.9rem 0.95rem;
  }

  .foco-side-index {
    width: 26px;
    height: 26px;
    font-size: 0.7rem;
  }

  .metodo-carousel {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    gap: 1rem;
  }

  .metodo-visual img {
    min-height: 220px;
  }

  .section-metodo-nav {
    display: none;
  }

  .section-header.section-metodo-header {
    max-width: 100%;
  }

  .metodo-card {
    min-height: 0;
    grid-template-columns: 48px 1fr;
    grid-template-areas:
      "icon title"
      "desc desc"
      "index index";
    row-gap: 0.45rem;
    padding: 1.05rem 0.95rem 0.9rem;
  }

  .metodo-card-title {
    font-size: 1.2rem;
  }

  .metodo-card-desc {
    font-size: 0.9rem;
  }

  .metodo-card-index {
    justify-self: start;
    padding-left: 0;
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .section-quem-layout,
  .quem-mini-grid {
    grid-template-columns: 1fr;
  }

  .quem-side-stack {
    grid-template-columns: 1fr;
  }

  .quem-spotlight {
    min-height: 340px;
    border-radius: 18px;
  }

  .quem-spotlight-title {
    font-size: clamp(1.35rem, 7vw, 1.7rem);
  }

  .quem-spotlight-desc {
    font-size: 0.95rem;
  }

  .quem-brazil-map {
    width: min(72%, 360px);
    transform: translate(42%, 16%);
  }

  .quem-proof-card {
    min-height: 190px;
  }

  .quem-proof-number {
    font-size: 2.9rem;
  }

  .quem-quote-card {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0.8rem;
  }

  .quem-quote-thumb {
    height: 160px;
  }

  .section-fazemos-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .fazemos-col {
    grid-template-columns: 1fr;
  }

  .fazemos-core {
    width: min(100%, 220px);
    min-height: 140px;
  }

  .fazemos-core-logo {
    width: 96px;
    height: 96px;
  }

  .cta-card {
    padding: 1.15rem 1rem;
  }

  .cta-card-title {
    font-size: 1.55rem;
  }

  .cta-card-desc {
    font-size: 0.94rem;
  }

  .btn-cta--wpp {
    width: 100%;
    justify-content: center;
  }

  .btn-cta-ghost {
    width: 100%;
    justify-content: center;
  }

  .footer {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  }

  .footer-copy {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

.contato-placeholder {
  height: 1px;
  position: absolute;
  pointer-events: none;
  opacity: 0;
}

@media (max-width: 600px) {
  .logo-img {
    height: 40px;
  }

  .header-inner .nav a {
    font-size: 0.95rem;
    padding: 0.85rem 0;
  }
}

/* ========== Página Sobre ========== */
.page-sobre {
  min-height: 100vh;
  padding: 8rem 1.5rem 5rem;
  background: transparent;
  position: relative;
  z-index: 1;
}

.page-sobre::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
  pointer-events: none;
}

.sobre-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sobre-content {
  padding-right: 1rem;
}

.sobre-content .section-badge {
  margin-bottom: 1rem;
}

.sobre-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 1.5rem;
}

.sobre-title-highlight {
  color: var(--blue-bright);
  background: linear-gradient(180deg, #93c5fd, var(--blue-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sobre-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1rem;
}

.sobre-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
}

.sobre-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.sobre-list-icon {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--blue-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
}

.btn-sobre {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: linear-gradient(90deg, var(--blue-btn-start), var(--blue-bright));
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-sobre:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 99, 235, 0.45);
}

.btn-sobre--outline {
  background: transparent;
  border: 1px solid rgba(96, 165, 250, 0.5);
  color: var(--blue-bright);
  box-shadow: none;
}

.btn-sobre--outline:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: var(--blue-bright);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
}

.sobre-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.sobre-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(37, 99, 235, 0.08) 100%);
  border: 1px solid rgba(96, 165, 250, 0.2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4),
              0 0 60px rgba(37, 99, 235, 0.08);
  aspect-ratio: 1;
  max-width: 440px;
  margin-left: auto;
}

.sobre-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 2rem;
  filter: brightness(1.1) contrast(1.05);
}

@media (max-width: 900px) {
  .page-sobre {
    padding-top: 7rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .sobre-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .sobre-content {
    padding-right: 0;
  }

  .sobre-image-wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .sobre-buttons {
    justify-content: center;
  }
}

/* Seção de cards da página Sobre */
.sobre-cards-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.sobre-cards-section .section-header {
  margin-bottom: 2.5rem;
}

.sobre-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.sobre-card {
  padding: 2rem 1.5rem;
}

@media (max-width: 900px) {
  .sobre-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .sobre-cards-section {
    padding: 3rem 1rem 4rem;
  }
}

@media (max-width: 600px) {
  .page-sobre {
    padding: 6rem 1rem 4rem;
  }

  .sobre-title {
    font-size: 1.75rem;
  }

  .sobre-desc {
    font-size: 1rem;
  }

  .sobre-list {
    text-align: left;
  }

  .sobre-list li {
    justify-content: flex-start;
  }

  .sobre-buttons {
    flex-direction: column;
    width: 100%;
  }

  .sobre-buttons .btn-sobre {
    width: 100%;
    justify-content: center;
  }

  .sobre-cards-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ========== Página Serviços ========== */
.page-servicos {
  min-height: 100vh;
  padding: 8rem 1.5rem 5rem;
  background: transparent;
  position: relative;
  z-index: 1;
}

.page-servicos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
  pointer-events: none;
}

.servicos-hero {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.servicos-hero .servicos-header {
  margin-bottom: 1.75rem;
}

.servicos-hero .section-sublabel {
  margin-bottom: 0;
}

.servicos-intro {
  margin: 2rem 0 2.25rem;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(30, 64, 175, 0.04) 100%);
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: 16px;
  border-left: 3px solid var(--blue-bright);
  text-align: left;
}

.servicos-intro-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.servicos-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.servicos-hero-actions .btn-sobre,
.servicos-hero-actions .btn-sobre--outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* Bloco "Nossas soluções" + grid de cards */
.servicos-solutions {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.servicos-solutions-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.servicos-solutions-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(147, 197, 253, 0.9);
  margin-bottom: 0.5rem;
}

.servicos-solutions-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin: 0;
  background: linear-gradient(180deg, #fff 0%, #e0e7ff 50%, #c7d2fe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

/* Stagger na entrada dos cards */
.servicos-solutions.is-revealed .servicos-card {
  animation: fade-in-up 0.5s var(--ease-out-expo) both;
}

.servicos-solutions.is-revealed .servicos-card:nth-child(1) { animation-delay: 0.05s; }
.servicos-solutions.is-revealed .servicos-card:nth-child(2) { animation-delay: 0.1s; }
.servicos-solutions.is-revealed .servicos-card:nth-child(3) { animation-delay: 0.15s; }
.servicos-solutions.is-revealed .servicos-card:nth-child(4) { animation-delay: 0.2s; }
.servicos-solutions.is-revealed .servicos-card:nth-child(5) { animation-delay: 0.25s; }
.servicos-solutions.is-revealed .servicos-card:nth-child(6) { animation-delay: 0.3s; }

/* Card de serviço – visual próprio */
.servicos-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(10, 15, 26, 0.92);
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 16px;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease-out-expo);
}

.servicos-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue-bright), var(--cyan));
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 4px 0 0 4px;
  z-index: 2;
}

.servicos-card:hover {
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 48px rgba(37, 99, 235, 0.12);
  transform: translateY(-4px);
}

.servicos-card:hover::before {
  opacity: 1;
}

.servicos-card-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(96, 165, 250, 0.2);
  z-index: 2;
  pointer-events: none;
}

.servicos-card-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 160px;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

.servicos-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}

.servicos-card:hover .servicos-card-image-wrap img {
  transform: scale(1.08);
}

.servicos-card-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 8, 16, 0.85) 100%);
  pointer-events: none;
}

.servicos-card-tag {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(37, 99, 235, 0.7);
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  z-index: 1;
}

.servicos-card-body {
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.servicos-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.servicos-card-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.25rem;
  flex: 1;
}

.servicos-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-bright);
  text-decoration: none;
  transition: color 0.25s, gap 0.25s;
  margin-top: auto;
}

.servicos-card-cta::after {
  content: '→';
  font-weight: 700;
  transition: transform 0.25s var(--ease-out-expo);
}

.servicos-card-cta:hover {
  color: var(--cyan);
  gap: 0.5rem;
}

.servicos-card-cta:hover::after {
  transform: translateX(4px);
}

/* CTA final da página de serviços */
.servicos-footer-cta {
  margin-top: 3rem;
  padding: 2rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(30, 64, 175, 0.04) 100%);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 16px;
}

.servicos-footer-cta-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.25rem;
  font-weight: 500;
}

.servicos-footer-cta .btn-sobre {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
}

@media (max-width: 900px) {
  .page-servicos {
    padding-top: 7rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .servicos-hero {
    margin-bottom: 2.5rem;
  }

  .servicos-intro {
    margin: 1.5rem 0 1.75rem;
    padding: 1.35rem 1.5rem;
  }

  .servicos-intro-text {
    font-size: 1rem;
  }

  .servicos-solutions {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .servicos-solutions-head {
    margin-bottom: 2rem;
  }

  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .page-servicos {
    padding: 6rem 1rem 4rem;
  }

  .servicos-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .servicos-hero-actions .btn-sobre,
  .servicos-hero-actions .btn-sobre--outline {
    width: 100%;
    justify-content: center;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .servicos-card-num {
    font-size: 1.5rem;
    top: 0.75rem;
    right: 0.75rem;
  }

  .servicos-footer-cta {
    margin-top: 2rem;
    padding: 1.5rem 1.25rem;
  }

  .servicos-footer-cta-text {
    font-size: 1rem;
  }
}

/* ========== Página Contatos ========== */
.page-contatos {
  min-height: 100vh;
  padding: 8rem 1.5rem 5rem;
  background: transparent;
  position: relative;
  z-index: 1;
}

.page-contatos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
  pointer-events: none;
}

.contatos-hero {
  max-width: 1100px;
  margin: 0 auto 3rem;
  text-align: center;
}

.contatos-hero .section-header {
  margin-bottom: 2rem;
}

.contatos-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

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

.contatos-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: rgba(10, 15, 26, 0.92);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 16px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s var(--ease-out-expo);
}

.contatos-card:hover {
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 32px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.contatos-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-bright);
  margin-bottom: 1.25rem;
}

.contatos-card-icon svg {
  width: 28px;
  height: 28px;
}

.contatos-card-wpp .contatos-card-icon {
  color: #25d366;
}

.contatos-card-icon-pin {
  color: var(--cyan);
}

.contatos-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.contatos-card-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.25rem;
}

.contatos-card-desc br {
  display: block;
  content: '';
  margin-top: 0.25rem;
}

.contatos-card-btn {
  display: inline-flex;
  margin-top: 0.25rem;
}

.contatos-card-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-bright);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.contatos-card-link:hover {
  color: var(--cyan);
}

.contatos-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 900px) {
  .page-contatos {
    padding-top: 7rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contatos-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .contatos-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 600px) {
  .page-contatos {
    padding: 6rem 1rem 4rem;
  }

  .contatos-buttons .btn-sobre {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Tema claro solicitado: fundo branco + textos cinza ===== */
:root {
  --bg-dark: #ffffff;
  --bg-mid: #f7f7f8;
  --bg-hero-top: #ffffff;
  --bg-hero-mid: #fafafa;
  --bg-hero-bottom: #ffffff;
  --text: #1f2937;
  --text-muted: #4b5563;
}

body {
  background: #ffffff !important;
  color: #374151 !important;
}

body::before,
body::after,
.hero::before,
.hero::after,
.hero-orb,
.hero-content::before,
.hero-content::after,
.section-problema::before,
.section-metodo::before,
.section-fazemos::before,
.section-quem::before,
.section-cta::before {
  content: none !important;
  background: none !important;
}

.header-inner,
.hero-slide-card,
.foco-main-card,
.foco-side-item,
.metodo-card,
.card,
.quem-spotlight,
.quem-proof-card,
.quem-quote-card,
.cta-card,
.sobre-image-wrap,
.servicos-card,
.contatos-card {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06) !important;
}

.hero-title,
.hero-pre-title,
.foco-main-title,
.metodo-card-title,
.section-title,
.card-title,
.quem-spotlight-title,
.cta-card-title,
.footer-redes-label {
  color: #111827 !important;
}

.hero-subtitle,
.hero-pre-lead,
.hero-pre-points li,
.hero-pre-closing,
.foco-main-desc,
.foco-side-desc,
.metodo-card-desc,
.card-desc,
.quem-spotlight-desc,
.cta-card-desc,
.footer-copy,
.sobre-desc,
.section-sublabel {
  color: #6b7280 !important;
}

.nav a,
.header-brand-text,
.logo,
.footer-icon {
  color: #374151 !important;
}

.section-badge,
.foco-kicker,
.foco-pill,
.foco-action,
.hero-pre-kicker {
  background: #f3f4f6 !important;
  border-color: #d1d5db !important;
  color: #4b5563 !important;
}

.hero-particle,
.quem-brazil-map {
  opacity: 0.15 !important;
  filter: none !important;
}

.footer {
  background: #ffffff !important;
  border-top: 1px solid #e5e7eb !important;
}

/* Fundo cinza visivel: bolinhas + circulo */
body::before {
  content: '' !important;
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(107, 114, 128, 0.48) 0 1.1px, transparent 1.8px),
    radial-gradient(circle at 72% 62%, rgba(107, 114, 128, 0.42) 0 1.1px, transparent 1.8px),
    radial-gradient(circle at 44% 86%, rgba(156, 163, 175, 0.5) 0 1.2px, transparent 1.9px);
  background-size: 240px 240px, 300px 300px, 220px 220px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
  animation: grain-drift 30s linear infinite;
}

.hero-content::before {
  content: '' !important;
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(78vw, 720px);
  height: min(78vw, 720px);
  transform: translate(-50%, -46%);
  border-radius: 50%;
  border: 1px solid rgba(156, 163, 175, 0.4);
  background: radial-gradient(circle, rgba(229, 231, 235, 0.42) 0%, rgba(229, 231, 235, 0.2) 60%, rgba(229, 231, 235, 0.08) 100%);
  box-shadow: none !important;
  z-index: -1;
  opacity: 0.8;
  animation: none !important;
}

.hero-content::after {
  content: none !important;
}

.hero-particle {
  opacity: 0.38 !important;
  background: radial-gradient(circle, rgba(107, 114, 128, 0.72) 0%, rgba(156, 163, 175, 0.28) 45%, rgba(156, 163, 175, 0) 100%) !important;
}

/* Botoes no mesmo padrao azul/branco dos cards */
.btn-header--wpp,
.btn-hero,
.btn-cta,
.btn-cta--wpp,
.btn-sobre:not(.btn-sobre--outline) {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 55%, #38bdf8 100%) !important;
  border: 1px solid rgba(191, 219, 254, 0.58) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28) !important;
}

.btn-header--wpp:hover,
.btn-hero:hover,
.btn-cta:hover,
.btn-cta--wpp:hover,
.btn-sobre:not(.btn-sobre--outline):hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 55%, #22d3ee 100%) !important;
  color: #ffffff !important;
}

/* Cards azuis com texto branco (bloco de capacidades) */
.fazemos-item {
  background: linear-gradient(160deg, #1e3a8a 0%, #2563eb 55%, #38bdf8 100%) !important;
  border: 1px solid rgba(191, 219, 254, 0.55) !important;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.32) !important;
}

.fazemos-item-title {
  color: #ffffff !important;
}

.fazemos-item-desc {
  color: rgba(241, 245, 249, 0.95) !important;
}

/* Fundo sempre atras do conteudo */
main,
header,
footer,
.section-direcao,
.section-slider-servicos,
.section-metodo,
.section-fazemos,
.section-quem,
.section-cta {
  position: relative;
  z-index: 2;
}

body::before {
  z-index: 0 !important;
}

.hero-content::before {
  z-index: -5 !important;
}

/* Correcoes solicitadas: destaques azuis + cards no tom correto */
#direcao-estrategica .hero-pre-points strong {
  color: #2563eb !important;
}

#direcao-estrategica .hero-pre-kicker {
  color: #1d4ed8 !important;
  border-color: rgba(59, 130, 246, 0.45) !important;
  background: rgba(59, 130, 246, 0.12) !important;
}

.hero-slide-card,
.hero-slide-card--active {
  background: linear-gradient(165deg, #1e3a8a 0%, #1d4ed8 52%, #38bdf8 100%) !important;
  border: 1px solid rgba(191, 219, 254, 0.55) !important;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28) !important;
}

.hero-slide-body {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.24), rgba(15, 23, 42, 0.44)) !important;
}

.hero-slide-title {
  color: #ffffff !important;
}

.hero-slide-desc {
  color: rgba(241, 245, 249, 0.92) !important;
}

.hero-slide-link {
  color: #dbeafe !important;
}

/* Paleta correta para secao "Transformamos direcao tecnica..." */
#como-fazemos .section-title {
  color: #0f172a !important;
}

#como-fazemos .section-sublabel {
  color: #475569 !important;
}

#como-fazemos .metodo-card {
  background: #ffffff !important;
  border: 1px solid #bfdbfe !important;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12) !important;
}

#como-fazemos .metodo-card-icon {
  background: linear-gradient(145deg, #1d4ed8 0%, #2563eb 60%, #38bdf8 100%) !important;
  border: 1px solid rgba(191, 219, 254, 0.8) !important;
  color: #ffffff !important;
}

#como-fazemos .metodo-card-title {
  color: #0f172a !important;
}

#como-fazemos .metodo-card-desc {
  color: #475569 !important;
}

#como-fazemos .metodo-card-index {
  background: linear-gradient(to top right, rgb(255 255 255 / 0%) 0%, rgb(37 99 235 / 10%) 48%, rgba(37, 99, 235, 0.98) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  opacity: 1 !important;
}

/* Paleta correta para secao "Quem atendemos" com mapa ao fundo */
#quem-atendemos .quem-spotlight {
  background:
    radial-gradient(620px 340px at 12% 0%, rgba(59, 130, 246, 0.08), transparent 66%),
    radial-gradient(540px 300px at 92% 100%, rgba(14, 165, 233, 0.06), transparent 70%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.82) 0%, rgba(248, 250, 252, 0.78) 55%, rgba(255, 255, 255, 0.76) 100%) !important;
  border: 1px solid rgba(148, 163, 184, 0.32) !important;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(10px) saturate(118%);
  -webkit-backdrop-filter: blur(10px) saturate(118%);
}

#quem-atendemos .quem-spotlight-chip {
  color: #334155 !important;
  border-color: rgba(148, 163, 184, 0.42) !important;
  background: rgba(255, 255, 255, 0.56) !important;
}

#quem-atendemos .quem-spotlight-title {
  color: #0f172a !important;
}

#quem-atendemos .quem-spotlight-desc {
  color: #475569 !important;
}

#quem-atendemos .quem-spotlight-btn {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 55%, #38bdf8 100%) !important;
  border: 1px solid rgba(191, 219, 254, 0.58) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.3) !important;
}

#quem-atendemos .quem-proof-card,
#quem-atendemos .quem-quote-card {
  background:
    radial-gradient(140% 100% at 100% 0%, rgba(59, 130, 246, 0.08), transparent 62%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.58), rgba(248, 250, 252, 0.52)) !important;
  border: 1px solid rgba(148, 163, 184, 0.3) !important;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.62) !important;
  backdrop-filter: blur(10px) saturate(118%);
  -webkit-backdrop-filter: blur(10px) saturate(118%);
}

#quem-atendemos .quem-proof-text,
#quem-atendemos .quem-quote-text {
  color: #1e293b !important;
}

#quem-atendemos .quem-proof-label,
#quem-atendemos .quem-quote-author {
  color: #64748b !important;
}

#quem-atendemos .quem-proof-number {
  color: rgb(37 99 235) !important;
}

#quem-atendemos .quem-map-bg {
  z-index: 0 !important;
  opacity: 0.98 !important;
}

#quem-atendemos .quem-map-bg::before {
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 95%, rgba(59, 130, 246, 0.06), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.03)) !important;
}

#quem-atendemos .quem-brazil-map {
  position: relative;
  z-index: 1;
  width: min(68%, 430px);
  transform: translate(24%, 10%);
  opacity: 0.9 !important;
  filter: none !important;
}

#quem-atendemos .quem-brazil-state {
  fill: rgba(125, 211, 252, 0.42) !important;
  stroke: rgba(96, 165, 250, 0.9) !important;
}

/* Refino visual da secao de slider: menos apagado + navegacao correta */
#slider-servicos .hero-slider {
  min-height: 420px;
}

#slider-servicos .hero-slide-card {
  opacity: 0.92 !important;
  transform: scale(0.95);
  border-radius: 18px;
}

#slider-servicos .hero-slide-card--active {
  opacity: 1 !important;
  transform: scale(1.03);
}

#slider-servicos .hero-slide-card:hover {
  opacity: 1 !important;
}

#slider-servicos .hero-slide-img {
  border-bottom: 1px solid rgba(191, 219, 254, 0.42);
}

#slider-servicos .hero-slide-body {
  background: linear-gradient(180deg, rgba(30, 58, 138, 0.42), rgba(37, 99, 235, 0.56)) !important;
}

#slider-servicos .hero-slide-title {
  color: #ffffff !important;
}

#slider-servicos .hero-slide-desc {
  color: rgba(239, 246, 255, 0.94) !important;
}

#slider-servicos .hero-slide-link {
  color: #eff6ff !important;
}

#slider-servicos .hero-slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.58) !important;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 55%, #38bdf8 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.32) !important;
}

#slider-servicos .hero-slider-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

#slider-servicos .hero-slider-btn:hover {
  transform: translateY(-50%) scale(1.08);
  border-color: rgba(191, 219, 254, 0.78) !important;
}

/* Cards flutuantes no fundo (meta/google/etc), atras do conteudo */
@keyframes bg-float-drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

.bg-float-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.bg-float-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(243, 244, 246, 0.9);
  color: #4b5563;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  animation: bg-float-drift 7s ease-in-out infinite;
}

.bg-float-card::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  box-shadow: 0 0 0 2px rgba(191, 219, 254, 0.6);
}

.bg-float-card--1 { top: 18%; left: 7%; animation-delay: -0.6s; }
.bg-float-card--2 { top: 24%; right: 10%; animation-delay: -1.8s; }
.bg-float-card--3 { top: 52%; left: 6%; animation-delay: -2.4s; }
.bg-float-card--4 { top: 62%; right: 8%; animation-delay: -3.2s; }
.bg-float-card--5 { top: 78%; left: 48%; animation-delay: -1.2s; }

@media (max-width: 900px) {
  .bg-float-card {
    font-size: 0.68rem;
    padding: 0.4rem 0.62rem;
    opacity: 0.9;
  }
}

@media (max-width: 600px) {
  .bg-float-card {
    display: none;
  }
}

