/* ================================================
   LPPO × Cloudfy — Design System v3
   ================================================ */

/* --- Reset ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button, select, input, textarea { font-family: inherit; }

/* --- Tokens ---------------------------------------- */
:root {
  --bg:         #F5F3EF;
  --bg-warm:    #EDEAE2;
  --surface:    #FFFFFF;
  --canvas:     #000F1E;
  --canvas-2:   #001428;

  --ink:        #111110;
  --ink-soft:   #3E3D3B;
  --ink-muted:  #888880;

  --accent:     #1EF078;
  --accent-h:   #0ACC60;
  --accent-lt:  #5CF59A;

  --line:       #DDD9D1;
  --line-dark:  rgba(255,255,255,0.08);
  --line-dark2: rgba(255,255,255,0.15);

  --font-serif: 'Abrazo', Georgia, serif;
  --font-sans:  'Work Sans', -apple-system, sans-serif;

  --ease: cubic-bezier(0.25, 0, 0.1, 1);
  --dur:  220ms;

  --shell-max: 1320px;
  --shell-px:  clamp(24px, 5vw, 80px);
  --sec-py:    clamp(64px, 7vw, 96px);
  --radius:    3px;
}

/* --- Base ----------------------------------------- */
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Scroll Progress ------------------------------ */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--accent);
  z-index: 300;
  transition: width 80ms linear;
}

/* --- Shell ---------------------------------------- */
.shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 var(--shell-px);
}

/* --- Header --------------------------------------- */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 320ms var(--ease),
              border-color 320ms var(--ease),
              backdrop-filter 320ms var(--ease);
}
#site-header.is-scrolled {
  background: rgba(0, 15, 30, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: rgba(255,255,255,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}

.logo-link { flex-shrink: 0; display: flex; align-items: center; text-decoration: none; }
.logo { height: 29px; width: auto; }
.logo[src*="logo-cinza"] { filter: brightness(0) invert(1); }

.nav-links {
  display: flex; align-items: center;
  gap: 28px; margin-left: auto;
}
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.65); text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s var(--ease);
}
/* Underline accent verde que desliza da esquerda */
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

/* CTA do nav — borda verde */
.nav-cta {
  padding: 8px 20px !important;
  border: 1.5px solid var(--accent) !important;
  border-radius: 50px !important;
  color: var(--accent) !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  white-space: nowrap !important;
  transition: background 0.25s var(--ease), color 0.25s var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--canvas) !important;
}

.nav-toggle {
  display: none; flex-direction: column;
  gap: 6px; background: none; border: none;
  cursor: pointer; padding: 4px;
  margin-left: auto; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.8);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  transform-origin: center;
}
[data-nav-open] .nav-toggle span:first-child { transform: rotate(45deg) translate(5px, 5px); }
[data-nav-open] .nav-toggle span:last-child  { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Partner Badge -------------------------------- */
.partner-badge {
  display: inline-flex; align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 10px;
  border: 1px solid var(--line);
  border-radius: 40px;
  width: fit-content;
}
.partner-badge span {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  white-space: nowrap;
}
.partner-logo {
  height: 20px; width: auto;
}

/* --- Hero (página principal) ---------------------- */
#hero {
  min-height: 100svh;
  padding-top: 72px;
  background: var(--canvas);
  background-image: radial-gradient(circle, rgba(30,240,120,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  display: flex;
  align-items: center;
}

/* Hero centered — símbolo + copy empilhados */
.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(18px, 3vh, 32px);
  padding: clamp(32px, 5vh, 56px) 0;
  width: 100%;
}

/* --- Hero: layout 2 colunas (legacy) -------------- */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(60px, 8vh, 100px) 0;
  min-height: calc(100svh - 88px);
}

/* --- Hero Logo ------------------------------------ */
.hero-logo-hero-wrap {
  animation: logo-burst 0.7s 0.1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.hero-logo-hero {
  height: clamp(48px, 7.5vw, 96px);
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
@keyframes logo-burst {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}

/* --- Keyframes ------------------------------------ */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade-down {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(30,240,120,0.55); }
  60%       { box-shadow: 0 0 0 9px rgba(30,240,120,0); }
}
@keyframes orb-appear {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float-orb {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes slow-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Hero copy container */
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
}

/* Coluna esquerda ---------------------------------- */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Coluna direita: símbolo animado ------------------ */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-symbol-container {
  position: relative;
  width: min(440px, 44vw);
  height: min(440px, 44vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Anel decorativo giratório */
.hero-deco-ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(30,240,120,0.2);
  animation: slow-spin 22s linear infinite reverse;
  pointer-events: none;
}

/* (hero-sym-spinner substituído por hero-logo-wrap) */

/* Chips flutuantes nos 4 pontos */
.hero-chip {
  position: absolute;
  z-index: 2;
}
.hero-chip--n { top: 2%;  left: 50%; transform: translateX(-50%); }
.hero-chip--e { right: 0; top: 50%;  transform: translateY(-50%); }
.hero-chip--s { bottom: 2%; left: 50%; transform: translateX(-50%); }
.hero-chip--w { left: 0;  top: 50%;  transform: translateY(-50%); }

/* Chips: aparecem do logo e depois flutuam */
@keyframes chip-burst {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes chip-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

.chip-floater {
  animation: chip-burst 0.5s ease both, chip-float 4.2s ease-in-out infinite;
}
.hero-chip--n .chip-floater { animation-delay: 0.5s,  1.1s; }
.hero-chip--e .chip-floater { animation-delay: 0.65s, 1.25s; }
.hero-chip--s .chip-floater { animation-delay: 0.8s,  1.4s; }
.hero-chip--w .chip-floater { animation-delay: 0.95s, 1.55s; }

.hero-chip span {
  display: block;
  background: rgba(0,15,30,0.82);
  border: 1px solid rgba(30,240,120,0.32);
  color: rgba(255,255,255,0.9);
  font-size: 10px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Badge parceiro */
.hero-badge {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  animation: hero-fade-down 0.6s ease both;
  justify-content: center;
}
.hero-cloudfy-badge { height: 20px; width: auto; }
.hero-badge > span {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Ponto verde pulsante */
.hero-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Coluna esquerda: texto centralizado */
.hero-left {
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Headline com linhas animadas */
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.01em; color: #fff;
  margin-bottom: 20px;
  display: flex; flex-direction: column;
  align-items: center;
}
.hero-headline em { font-style: italic; color: var(--accent); }
.hl-line { display: block; }
.hl-line-1 { animation: hero-fade-up 0.65s 0.06s ease both; }
.hl-line-2 { animation: hero-fade-up 0.65s 0.20s ease both; }
.hl-line-3 { animation: hero-fade-up 0.65s 0.34s ease both; }

/* Tagline */
.hero-tagline {
  font-size: clamp(13px, 1vw, 15px);
  color: rgba(255,255,255,0.55); line-height: 1.7;
  max-width: 440px;
  animation: hero-fade-up 0.6s 0.50s ease both;
}

/* CTA centralizado */
.hero-actions {
  display: flex; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  margin-top: 32px;
  animation: hero-fade-up 0.6s 0.64s ease both;
}

/* Botão hero — pílula verde com seta */
.hero-btn {
  border-radius: 50px;
  padding: 14px 40px;
  font-size: 14px;
  background: var(--accent);
  color: var(--canvas);
  border-color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-btn:hover { background: var(--accent-h); border-color: var(--accent-h); color: var(--canvas); }
.hero-btn-arrow { display: inline-block; transition: transform 0.22s ease; }
.hero-btn:hover .hero-btn-arrow { transform: translateX(5px); }

/* Ghost light — mantido para seções dark */
.button--ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
}
.button--ghost-light:hover { background: #fff; color: var(--canvas); border-color: #fff; }

/* (hero-orbit removido — substituído por .hero-symbol-container) */

/* --- Sistema hero (intro quando clica em Sistema) - */
.sistema-intro {
  background: var(--bg-warm);
  padding: clamp(52px, 5.5vw, 80px) 0 clamp(40px, 4.5vw, 64px);
}

.sistema-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.sistema-intro-content {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vh, 20px);
}

.sistema-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px 4px 8px;
  margin-bottom: 18px;
  width: fit-content;
}
.sistema-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563EB;
  flex-shrink: 0;
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.7); }
}
.sistema-badge-logo {
  height: 14px;
  width: auto;
}
.sistema-badge span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
}

.sistema-intro-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.sistema-intro-headline em { font-style: italic; color: var(--accent); }

.sistema-intro-sub {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 500px;
}

.sistema-intro-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.sistema-intro-visual {
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sistema-intro-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* --- Buttons -------------------------------------- */
.button {
  display: inline-flex; align-items: center;
  padding: 12px 26px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--accent); color: var(--canvas);
  border: 1px solid var(--accent);
  text-decoration: none; cursor: pointer;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.button:hover { background: var(--accent-h); border-color: var(--accent-h); }
.button:disabled, .button[disabled] {
  background: var(--ink-muted); border-color: var(--ink-muted);
  color: rgba(255,255,255,.5); cursor: not-allowed; pointer-events: auto;
  opacity: 0.55;
}

.button--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line);
}
.button--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.button--ghost-light {
  background: transparent; color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.25);
}
.button--ghost-light:hover { background: #fff; color: var(--canvas); border-color: #fff; }

.text-link {
  font-size: 13px; font-weight: 600;
  color: var(--accent-lt); text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap var(--dur) var(--ease);
}
.text-link:hover { gap: 8px; }

/* --- Section Base --------------------------------- */
.section { padding: var(--sec-py) 0; background: var(--bg); }
.section--warm    { background: var(--bg-warm); }
.section--dark    { background: var(--canvas); color: #fff; }
/* Padrão dot-grid (colmeia) em seções brancas/superfície */
.section--surface {
  background-color: var(--surface);
  background-image: radial-gradient(circle, rgba(0,15,30,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Sistema section: intro block has its own top padding */
#sistema { padding-top: 0; }
/* O shell dos blocos de feature começa depois do intro — precisa de espaço próprio */
#sistema > .shell { padding-top: var(--sec-py); }

/* ── Separadores entre seções de mesma cor ───────── */

/* segmentos (beige) vem após parceiros (white) — adiciona borda inferior no parceiros */
#parceiros { border-bottom: 1px solid var(--line); }

/* sistema (light) começa com intro que já tem bg-warm — borda no topo da seção */
#sistema { border-top: 1px solid var(--line); }

/* sobre (light) após bloco escuro — linha tênue de entrada + padrão dot */
#sobre {
  border-top: 1px solid var(--line);
  background-image: radial-gradient(circle, rgba(0,15,30,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* governanca (dark) separado do consultoria (dark) por linha verde */
#governanca { border-top: 2px solid rgba(30,240,120,0.35); }

.section-header { margin-bottom: clamp(40px, 4.5vw, 64px); }

.section-label {
  display: block; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--ink-muted); margin-bottom: 16px;
}
.section--dark .section-label { color: var(--accent-lt); }

.section-headline {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em; color: var(--ink);
}
.section--dark .section-headline { color: #fff; }

.section-sub {
  margin-top: 16px;
  font-size: clamp(15px, 1.3vw, 17px);
  color: rgba(255,255,255,.55);
  line-height: 1.65; max-width: 560px;
}

/* --- Partners Band -------------------------------- */
.section-partners {
  padding: clamp(40px, 5vw, 64px) 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.partners-headline {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.partners-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.partners-track {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  width: max-content;
  animation: marquee 28s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partners-track img {
  height: clamp(32px, 3.5vw, 48px);
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter var(--dur) var(--ease);
  flex-shrink: 0;
}

.partners-track img:hover {
  filter: grayscale(0) opacity(1);
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; }
}

/* --- Segments ------------------------------------- */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--line);
}

.segment-card {
  background: var(--bg-warm);
  overflow: hidden;
  transition: background var(--dur) var(--ease);
}
.segment-card:hover { background: var(--surface); }

.segment-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.segment-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}
.segment-card:hover .segment-img img { transform: scale(1.04); }

.segment-body { padding: 20px; }

.segment-title {
  font-family: var(--font-sans);
  font-size: 16px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.segment-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }

/* --- Sistema blocks ------------------------------- */
.sistema-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  padding: clamp(48px, 5vw, 72px) 0;
  border-top: 1px solid var(--line);
}
.sistema-block:last-child { border-bottom: 1px solid var(--line); }
.sistema-block--reverse .sistema-text { order: 2; }
.sistema-block--reverse .sistema-visual { order: 1; }

.block-label {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--canvas); margin-bottom: 12px;
}
.block-title {
  font-family: var(--font-sans);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800; color: var(--ink);
  letter-spacing: -0.025em; line-height: 1.2;
  margin-bottom: 14px;
}
.block-desc {
  font-size: 15px; color: var(--ink-soft);
  line-height: 1.65; margin-bottom: 20px;
}
.block-list {
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--line); padding-top: 20px;
}
.block-list li {
  font-size: 14px; color: var(--ink-soft);
  line-height: 1.5; padding-left: 20px;
  position: relative;
}
.block-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--accent); font-size: 12px;
}

.sistema-visual {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  box-shadow: 0 4px 24px rgba(0,15,30,0.08);
}
.sistema-visual img { width: 100%; height: 100%; object-fit: cover; }

/* --- Modernizar Atendimento ----------------------- */
.section--light-blue {
  background: #EEF2F8;
}

.atend-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.atend-title {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 800;
  color: #1a2e4a;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.atend-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: #5a6a7e;
  font-weight: 400;
}

.atend-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-bottom: clamp(36px, 4vw, 56px);
}

.atend-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.atend-circle {
  width: clamp(160px, 18vw, 240px);
  height: clamp(160px, 18vw, 240px);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.atend-item:hover .atend-circle {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.16);
}

.atend-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}

.atend-item:hover .atend-circle img {
  transform: scale(1.06);
}

.atend-item-title {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 700;
  color: #1a2e4a;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.atend-item-desc {
  font-size: clamp(13px, 1vw, 15px);
  color: #5a6a7e;
  line-height: 1.55;
}

.atend-cta {
  text-align: center;
}

@media (max-width: 860px) {
  .atend-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .atend-circle {
    width: clamp(120px, 30vw, 180px);
    height: clamp(120px, 30vw, 180px);
  }
}

@media (max-width: 480px) {
  .atend-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .atend-circle { width: 130px; height: 130px; }
}

/* --- Plan ----------------------------------------- */
.plan-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.plan-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.plan-header {
  padding: 36px 40px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.plan-badge {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--canvas);
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.plan-title {
  font-family: var(--font-sans);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800; color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.plan-sub {
  font-size: 14px; color: var(--ink-soft);
  line-height: 1.65; margin-bottom: 24px;
  max-width: 560px;
}

.plan-features { padding: 32px 40px; }

.plan-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}

.plan-feature-item {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 14px; color: var(--ink-soft);
  line-height: 1.4;
}

.feature-check {
  color: var(--canvas); font-weight: 700;
  font-size: 13px; flex-shrink: 0;
  line-height: 1;
}

.plan-note {
  position: sticky; top: 80px;
}

.plan-note-inner {
  background: var(--canvas);
  border-radius: 4px;
  padding: 32px;
}

.plan-cloudfy-logo {
  height: 24px; width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.plan-note-inner p {
  font-size: 15px; color: rgba(255,255,255,.65);
  line-height: 1.65; margin-bottom: 20px;
}
.plan-note-inner strong { color: rgba(255,255,255,.9); }

/* --- Consultancy ---------------------------------- */
.consultancy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.consultancy-item {
  padding: 36px 32px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background var(--dur) var(--ease);
}
.consultancy-item:hover { background: var(--canvas-2); }

.consultancy-num {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; color: var(--accent-lt);
  opacity: 0.5; margin-bottom: 12px;
}
.consultancy-title {
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 700; color: #fff;
  letter-spacing: -0.01em; margin-bottom: 8px;
  line-height: 1.3;
}
.consultancy-desc {
  font-size: 14px; color: rgba(255,255,255,.6);
  line-height: 1.6;
}

/* --- Consultoria: fundo off-white + colmeia -------- */
#consultoria {
  background-color: var(--bg-warm);
  background-image: radial-gradient(circle, rgba(0,15,30,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
#consultoria .section-label  { color: var(--ink-muted); }
#consultoria .section-headline { color: var(--ink); }
#consultoria .section-sub     { color: var(--ink-soft); }

/* Cards do método no fundo claro */
#consultoria .metodo-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,15,30,0.09);
}
#consultoria .metodo-card:hover { background: rgba(255,255,255,0.95); }
#consultoria .metodo-title  { color: var(--ink); }
#consultoria .metodo-sub    { color: var(--ink-soft); }
#consultoria .metodo-desc   { color: var(--ink-muted); }

/* Descrição do símbolo no fundo claro */
#consultoria .metodo-symbol-desc { color: var(--ink-muted); }

/* --- Método LPPO cards ----------------------------- */
.metodo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.metodo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 32px;
  transition: background var(--dur) var(--ease);
}
.metodo-card:hover { background: rgba(255,255,255,0.07); }
.metodo-num {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.metodo-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.metodo-sub {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
  line-height: 1.5;
}
.metodo-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
}
@media (max-width: 700px) {
  .metodo-grid { grid-template-columns: 1fr; }
}

/* --- Método LPPO header (título + símbolo) -------- */
.metodo-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: 0;
}
.metodo-header-symbol {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.metodo-header-symbol .simbolo-img {
  width: 140px;
  flex-shrink: 0;
}
.metodo-symbol-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(0,15,30,0.10);
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 2px 12px rgba(0,15,30,0.06);
}
.metodo-symbol-desc {
  font-size: clamp(13px, 1.05vw, 14px);
  line-height: 1.75;
  color: var(--ink);
  text-align: left;
  margin: 0 0 20px;
}
.metodo-symbol-btn {
  width: 100%;
  justify-content: center;
}
@media (max-width: 800px) {
  .metodo-header {
    grid-template-columns: 1fr;
  }
  .metodo-header-symbol {
    order: -1;
  }
  .metodo-header-symbol .simbolo-img {
    width: 64px;
  }
}

/* --- About ---------------------------------------- */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.about-heading .section-headline {
  margin-bottom: 0;
}
.about-lead {
  font-size: clamp(15px, 1.35vw, 18px);
  color: var(--ink-soft); line-height: 1.65;
  margin-bottom: 12px;
  text-align: justify;
  hyphens: auto;
}
.about-body {
  font-size: 14.5px; color: var(--ink-muted);
  line-height: 1.7; margin-bottom: 20px;
  text-align: justify;
  hyphens: auto;
}
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; padding-top: 20px;
  border-top: 1px solid var(--line);
}
.pillar-label {
  display: block; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--canvas); margin-bottom: 6px;
}
.pillar p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; text-align: justify; hyphens: auto; }

/* --- CTA / Contato -------------------------------- */
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.cta-sub {
  margin-top: 16px;
  font-size: clamp(14px, 1.3vw, 16px);
  color: rgba(255,255,255,.5); line-height: 1.7;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(255,255,255,.35);
}
.field input, .field textarea, .field select {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 13px 14px;
  font-size: 15px; color: #fff; width: 100%;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field select option { background: var(--canvas-2); color: #fff; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.2); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.07);
}
.field select { appearance: none; cursor: pointer; resize: none; }
.field textarea { resize: vertical; }

.form-success { padding: 40px; border: 1px solid rgba(255,255,255,.1); text-align: center; }
.form-success-title { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.form-success p:last-child { font-size: 15px; color: rgba(255,255,255,.5); }

/* --- Footer --------------------------------------- */
#site-footer {
  background: var(--canvas);
  border-top: 2px solid rgba(30,240,120,0.18);
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 0;
  align-items: start;
}

/* Brand column */
.footer-brand { display: flex; flex-direction: column; gap: 0; }

.footer-logo {
  display: block;
  height: auto;
  width: auto;
  max-width: 96px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,.52);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 320px;
}

.footer-partner {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  padding: 8px 14px;
  width: fit-content;
}
.footer-partner span {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: rgba(255,255,255,.35);
}
.footer-cloudfy-logo {
  height: 14px; width: auto;
  opacity: 0.55;
  filter: brightness(0) invert(1);
}

/* Nav column */
.footer-label {
  display: block; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--accent); opacity: 0.6;
  margin-bottom: 20px;
}
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  font-size: 14px; color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
  letter-spacing: -0.01em;
}
.footer-nav a:hover { color: #fff; }

/* Contact column */
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact a {
  font-size: 14px; color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
  letter-spacing: -0.01em;
}
.footer-contact a:hover { color: #fff; }
.footer-contact a[href^="mailto"] {
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

/* Bottom bar */
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,.22); letter-spacing: 0.01em; }

.footer-cta-link {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px !important;
  font-weight: 600;
  color: var(--accent) !important;
  letter-spacing: 0.01em;
}
.footer-cta-link:hover { color: var(--accent-lt) !important; }

/* --- WhatsApp Float ------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), padding 240ms var(--ease);
  overflow: hidden;
  max-width: 56px;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.whatsapp-label {
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 240ms var(--ease), max-width 240ms var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.50);
  max-width: 260px;
  padding: 12px 20px 12px 14px;
}

.whatsapp-float:hover .whatsapp-label {
  opacity: 1;
  max-width: 200px;
}

/* Pulso de atenção */
@keyframes wapulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40); }
  50%       { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.70), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}
.whatsapp-float {
  animation: wapulse 2.8s ease-in-out infinite;
}
.whatsapp-float:hover {
  animation: none;
}

@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    padding: 11px;
    max-width: 50px;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* --- Reveal --------------------------------------- */
[data-reveal] {
  opacity: 0; transform: translateY(16px);
  transition: opacity 540ms var(--ease), transform 540ms var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal-delay="3"] { transition-delay: 240ms; }
[data-reveal-delay="4"] { transition-delay: 320ms; }
[data-reveal-delay="5"] { transition-delay: 400ms; }

/* ================================================
   SÍMBOLO LPPO
   ================================================ */

.simbolo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}

/* Símbolo container */
.simbolo-diagram { display: flex; justify-content: center; }

.simbolo-svg-wrap {
  position: relative;
  width: min(360px, 100%);
}

/* Imagem real do símbolo LPPO */
.simbolo-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.34, 1.36, 0.64, 1);
}

.simbolo-img.is-animated {
  opacity: 1;
  transform: scale(1);
}

/* Text side */
.simbolo-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.15;
  color: var(--ink);
  margin: 12px 0 20px;
}
.simbolo-headline em { color: var(--accent-h); font-style: italic; }

.simbolo-lead {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}

/* Steps list */
.sym-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sym-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sym-step:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.sym-step--highlight {
  background: var(--canvas);
  border-color: var(--canvas);
}
.sym-step--highlight:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.sym-step-badge {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--canvas);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
}
.sym-step-badge--green {
  background: var(--accent);
  color: var(--canvas);
}

.sym-step-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sym-step-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.sym-step--highlight .sym-step-text strong { color: #fff; }

.sym-step-text span {
  font-size: 12px;
  color: var(--ink-muted);
}
.sym-step--highlight .sym-step-text span { color: rgba(255,255,255,0.6); }

/* ================================================
   BPO — Governança Financeira
   ================================================ */

.bpo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: clamp(40px, 5vw, 64px);
}

.bpo-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.bpo-card:hover {
  border-color: var(--canvas);
  box-shadow: 0 8px 32px rgba(0,15,30,0.1);
}

.bpo-card--featured {
  border-color: var(--canvas);
  box-shadow: 0 8px 40px rgba(0,15,30,0.12);
}
.bpo-card--featured:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 40px rgba(30,240,120,0.15);
}

.bpo-card-highlight {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--canvas);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.bpo-card-header { margin-bottom: 24px; }

.bpo-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.bpo-badge--green { color: var(--accent-h); }

.bpo-card-title {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.bpo-card-sub {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

.bpo-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.bpo-features li {
  font-size: 13.5px;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.bpo-features li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--accent-h);
  font-weight: 700;
  font-size: 12px;
}

.bpo-cta {
  display: block;
  text-align: center;
  padding: 13px 20px;
  background: transparent;
  border: 1.5px solid var(--canvas);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--canvas);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  margin-top: auto;
}
.bpo-cta:hover { background: var(--canvas); color: #fff; }

.bpo-cta--green {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--canvas);
}
.bpo-cta--green:hover {
  background: var(--accent-h);
  border-color: var(--accent-h);
  color: var(--canvas);
}

/* --- BPO Pillars (2-column service description) --- */
.bpo-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
}

.bpo-pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(24px, 3vw, 36px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.bpo-pillar:hover {
  border-color: var(--canvas);
  box-shadow: 0 6px 28px rgba(0,15,30,0.08);
}

.bpo-pillar-title {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.bpo-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bpo-list li {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}
.bpo-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-h);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .bpo-pillars { grid-template-columns: 1fr; }
}

/* --- Responsive: compress nav --------------------- */
@media (max-width: 1100px) {
  .nav-links { gap: 20px; }
  .plan-wrapper { grid-template-columns: 1fr; }
  .plan-note { position: static; }
  .segments-grid { grid-template-columns: repeat(4, 1fr); }
  .consultancy-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Parceiros Tecnológicos ----------------------- */
.tech-partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: 48px;
}

.tech-partner-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
  cursor: default;
}
.tech-partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,15,30,0.10);
  border-color: rgba(30,240,120,0.35);
}

.tech-partner-logo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.tech-partner-card:hover .tech-partner-logo-wrap {
  border-color: rgba(30,240,120,0.45);
  box-shadow: 0 4px 16px rgba(30,240,120,0.08);
}
.tech-partner-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.tech-partner-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.tech-partner-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

/* ================================================
   BPO Financeiro — nova seção
   ================================================ */

.bpo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.bpo-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bpo-content .section-headline em {
  color: var(--accent-h);
  font-style: italic;
}

.bpo-hook {
  margin-top: 20px;
  margin-bottom: 16px;
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
}

.bpo-lead {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: clamp(14px, 1.1vw, 15px);
  color: rgba(255,255,255,0.52);
  line-height: 1.8;
}

.bpo-closing {
  margin-top: 0;
  margin-bottom: 28px;
  font-size: clamp(14px, 1.15vw, 15px);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  padding-left: 14px;
  border-left: 2px solid var(--accent);
}

.bpo-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bpo-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}

.bpo-check {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.bpo-visual img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  display: block;
}

@media (max-width: 800px) {
  .bpo-inner { grid-template-columns: 1fr; }
  .bpo-visual { order: -1; }
}

/* ================================================
   BPO Governança — estilos legados (mantidos para fallback)
   ================================================ */

.gov-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}

.gov-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 110px;
}

.gov-lead {
  margin-top: 20px;
  margin-bottom: 32px;
  font-size: 15px;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
  max-width: 380px;
}

.gov-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.gov-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 36px);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.gov-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(30,240,120,0.35);
}

.gov-card-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.gov-card-title {
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gov-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gov-list li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.gov-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
}

/* --- Responsive: 860px ---------------------------- */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-left  { align-items: center; }
  .hero-symbol-container { width: min(340px, 78vw); height: min(340px, 78vw); }

  .bpo-grid { grid-template-columns: 1fr 1fr; }
  .sistema-intro-inner { grid-template-columns: 1fr; }
  .sistema-intro-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .tech-partners-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .sistema-block { grid-template-columns: 1fr; }
  .sistema-block--reverse .sistema-text { order: 1; }
  .sistema-block--reverse .sistema-visual { order: 2; }
  .plan-feature-list { grid-template-columns: 1fr; }
  .simbolo-inner { grid-template-columns: 1fr; }
  .simbolo-svg-wrap { width: min(280px, 100%); margin: 0 auto; }
  .bpo-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .gov-inner { grid-template-columns: 1fr; }
  .gov-head { position: static; }
  .segments-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- Responsive: 900px (mobile nav) --------------- */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #000F1E;
    border-top: 1px solid rgba(255,255,255,0.10);
    border-bottom: 1px solid rgba(255,255,255,0.10);
    flex-direction: column; align-items: flex-start;
    padding: 16px 24px 20px;
    gap: 4px; z-index: 999;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    font-size: 15px; font-weight: 500;
    color: rgba(255,255,255,0.85);
    width: 100%; padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin-top: 8px;
    padding: 10px 20px !important;
    white-space: nowrap !important;
    align-self: flex-start;
  }
}

/* --- Responsive: 640px (Mobile) ------------------- */
@media (max-width: 640px) {
  :root { --sec-py: clamp(48px, 9vw, 72px); }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding-top: 48px;
  }
  .hero-left { align-items: center; }
  .hero-symbol-container {
    width: min(320px, 80vw);
    height: min(320px, 80vw);
  }

  .segments-grid { grid-template-columns: 1fr 1fr; }

  .consultancy-grid { grid-template-columns: 1fr; }
  .consultancy-item { border-right: none; }

  .form-row { grid-template-columns: 1fr; }
  .tech-partners-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .about-pillars { grid-template-columns: 1fr; gap: 20px; }

  .sistema-visual { aspect-ratio: 3/2; }
}
