@charset "UTF-8";

/* ============================================================
   XTPG — Pages CSS v3
   Estilos complementares para páginas internas
   ============================================================ */

/* ─── CLIENTES — grids responsivos ───────────────────────── */
.clientes-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.clientes-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.clientes-depo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.metric-value {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
@media (max-width: 900px) {
  .clientes-split-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .clientes-depo-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .clientes-metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .metric-value {
    font-size: 2rem;
  }
}

/* ─── LOGOS MARQUEE ──────────────────────────────────────── */
.logos-marquee-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
}
.logos-marquee-wrap::before,
.logos-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logos-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, transparent 100%);
}
.logos-marquee-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, transparent 100%);
}
.logos-marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: logos-scroll 36s linear infinite;
}
.logos-marquee-track:hover { animation-play-state: paused; }
.logos-marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3rem;
  filter: grayscale(1);
  opacity: 0.5;
  transition: filter 0.3s, opacity 0.3s;
}
.logos-marquee-item img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
.logos-marquee-item:hover {
  filter: grayscale(0);
  opacity: 1;
}
@keyframes logos-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── PAGE HERO (inner pages) ───────────────────────────── */
.page-hero {
  background: var(--navy-deep);
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.page-hero--no-grid::before { display: none; }
/* ─── Contato: grade visível como fundo ── */
.page-hero--grid-visible::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero--grid-visible::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(7,18,32,0.95) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(11,28,50,0.6) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.page-hero--grid-visible .page-hero-ambient { opacity: 0.5; }
.page-hero--grid-visible .page-hero-content { z-index: 2; }
.page-hero-ambient {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55,221,0,0.06) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.page-hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.page-hero .lead { color: rgba(255,255,255,0.58); }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1.5rem;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.38); transition: color 0.2s; }
.page-hero-breadcrumb a:hover { color: var(--green); }
.page-hero-breadcrumb i { font-size: 0.6rem; color: rgba(255,255,255,0.2); }

/* ─── PAGE HERO — variante com imagem lateral (sobre.html) ── */
.page-hero--with-image {
  padding: 0;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: stretch;
}
.page-hero--with-image .container {
  display: flex;
  align-items: stretch;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  max-width: 100%;
  overflow: visible;
}
.page-hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 0;
  align-items: stretch;
  width: 100%;
  overflow: visible;
}
.page-hero--with-image .page-hero-content {
  max-width: 100%;
  padding: 10rem 4rem 7rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Coluna da imagem — sangra até a borda direita da viewport */
.page-hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  margin-right: calc(-1 * ((100vw - 1280px) / 2));
  min-width: 0;
}
.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  border-radius: 0;
  border: none;
  box-shadow: none;
}
/* Degradê de fusão: esquerda dissolve na cor do hero */
.page-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--navy-deep) 0%,
    rgba(13,26,43,0.55) 28%,
    rgba(13,26,43,0.10) 60%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}
/* Degradê inferior — funde com a próxima seção */
.page-hero-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(13,26,43,0.5) 100%
  );
  z-index: 1;
  pointer-events: none;
}
/* Glow verde — mantido mas acima dos degradês */
.page-hero-image-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    ellipse 60% 50% at 70% 40%,
    rgba(55,221,0,0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Responsivo */
@media (max-width: 900px) {
  .page-hero--with-image {
    min-height: auto;
  }
  .page-hero-split {
    grid-template-columns: 1fr;
  }
  .page-hero--with-image .page-hero-content {
    padding: 4.5rem 0 2rem;
  }
  .page-hero-image {
    height: 260px;
    margin-right: 0;
    border-radius: 0 0 var(--r-lg) var(--r-lg); /* arredonda apenas embaixo */
    overflow: hidden;
  }
  .page-hero-image img {
    object-position: center 30%;
  }
}
/* Em telas muito pequenas — imagem ocupa toda a largura, sem sobra lateral */
@media (max-width: 480px) {
  .page-hero--with-image {
    overflow: hidden;
  }
  .page-hero--with-image .container {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }
  .page-hero-split {
    overflow: hidden;
  }
  .page-hero--with-image .page-hero-content {
    padding: 4rem 2rem 1.5rem;
  }
  .page-hero-image {
    display: block;
    position: relative;
    height: 240px;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-radius: 0;
    overflow: hidden;
  }
  .page-hero-image img {
    object-position: center 30%;
  }
}

/* ─── PLATAFORMA HERO — editorial premium ────────────────── */
.plat-hero {
  background: var(--navy-deep);
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}

.plat-hero-inner {
  display: grid;
  grid-template-columns: 52% 48%;
  width: 100%;
  min-height: 100vh;
}

/* ── LEFT ── */
.plat-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 4rem 6rem 7vw;
  position: relative;
  z-index: 2;
}

/* label discreta — não eyebrow verde gritante */
.plat-hero-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin-bottom: 2rem;
}

/* headline: tipografia é o design */
.plat-hero-h1 {
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 2rem;
}
.plat-hero-h1 em {
  font-style: normal;
  color: var(--green);
}

/* subtexto leve, escaneável */
.plat-hero-sub {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.42);
  max-width: 480px;
  margin-bottom: 3rem;
}

/* CTAs limpos, sem hierarquia gritante */
.plat-hero-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.plat-cta-primary {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-deep);
  background: var(--white);
  padding: 0.8rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s;
}
.plat-cta-primary:hover {
  background: var(--green);
}
.plat-cta-ghost {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.01em;
}
.plat-cta-ghost:hover {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.40);
}

/* ── RIGHT ── */
.plat-hero-visual {
  position: relative;
  overflow: hidden;
}

/* ─── PLATAFORMA HERO — high-value financial system ────── */
.plat-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 140% 90% at -10% 60%, #0d2240 0%, transparent 52%),
    radial-gradient(ellipse 60%  60% at 108% 40%, #071220 0%, transparent 60%),
    #0b1c32;
}

/* imagem de fundo */
.plat-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.plat-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  display: block;
  filter: brightness(0.32) saturate(0.15) contrast(0.85) grayscale(1);
  mix-blend-mode: luminosity;
  transform: scale(1.04); /* elimina borda branca em zoom */
}
/* véu — lado esquerdo sólido, dissolução lenta, direito respira */
.plat-hero-bg-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      #0b1c32 0%,
      #0b1c32 22%,
      rgba(11,28,50,0.94) 34%,
      rgba(11,28,50,0.72) 50%,
      rgba(11,28,50,0.36) 68%,
      rgba(11,28,50,0.08) 84%,
      transparent 100%
    ),
    linear-gradient(to bottom,
      rgba(11,28,50,0.80) 0%,
      transparent 16%,
      transparent 80%,
      rgba(11,28,50,0.80) 100%
    );
}

/* conteúdo — alinhamento preciso, respiro generoso */
.plat-hero-body {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 6vw 0 max(3.5rem, 6vw);
}

/* label — quase invisível, apenas âncora */
.plat-hero-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  margin-bottom: 2.5rem;
}

/* headline — autoridade máxima, peso cirúrgico */
.plat-hero-h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 2.4rem;
  max-width: 800px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.28);
}
/* acento — apenas sublinhado verde de 1 px, nunca cor dominante */
.plat-h1-accent {
  font-weight: 800;
  color: #37dd00;
  position: relative;
  white-space: nowrap;
}
.plat-h1-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 1.5px;
  background: rgba(55,221,0,0.50);
  border-radius: 1px;
}

/* parágrafo — econômico, respirável */
.plat-hero-sub {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.70;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 3.6rem;
  letter-spacing: 0.01em;
}

/* CTAs — hierarquia intencional, nada promocional */
.plat-hero-cta {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  margin-bottom: 5.5rem;
}
/* primário — outline preciso, espessura controlada */
.plat-cta-primary {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  padding: 0.85rem 2.2rem;
  border-radius: 0;
  text-decoration: none;
  transition: border-color 0.4s, color 0.4s;
  white-space: nowrap;
}
.plat-cta-primary:hover {
  border-color: rgba(255,255,255,0.50);
  color: #ffffff;
}
/* secundário — tipográfico puro, mínima presença */
.plat-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.4s;
  white-space: nowrap;
}
.plat-cta-secondary i {
  font-size: 0.55rem;
  transition: transform 0.4s;
}
.plat-cta-secondary:hover { color: rgba(255,255,255,0.55); }
.plat-cta-secondary:hover i { transform: translateY(3px); }

/* proof — credencial institucional, gravidade máxima */
.plat-hero-proof {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  flex-wrap: wrap;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.plat-hero-proof span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
}

/* separador proof — espaço tipográfico */
.plat-proof-sep {
  color: rgba(255,255,255,0.30);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0;
}

/* responsive */
@media (max-width: 768px) {
  .plat-hero-body { padding: 2rem 1.75rem; max-width: 100%; }
  .plat-hero-bg-img { object-position: 78% center; }
  .plat-hero-bg-veil {
    background:
      linear-gradient(to bottom,
        rgba(6,12,20,0.88) 0%,
        rgba(6,12,20,0.72) 40%,
        rgba(6,12,20,0.88) 100%
      );
  }
  .plat-hero-h1 { font-size: clamp(2.4rem,9vw,3.4rem); }
}

/* ─── PLATAFORMA HERO NOVA — fundo claro, split texto + imagem ─ */
.plat-hero-new {
  background: #f8fafc;
  border-bottom: 1px solid var(--gray-100);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding-top: 80px;
}

.plat-hero-new-inner {
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
  gap: 5rem;
  width: 100%;
  padding: 5rem 0 4rem;
}

/* ── Texto ── */
.plat-hero-new-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plat-hero-new-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
}

.plat-hero-new-h1 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 1.75rem;
  max-width: 600px;
}

.plat-hero-new-accent {
  color: var(--green);
}

.plat-hero-new-sub {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--gray-500);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

/* ── CTAs ── */
.plat-hero-new-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.plat-hero-new-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.plat-hero-new-ghost i {
  font-size: 0.75rem;
  transition: transform 0.3s;
}
.plat-hero-new-ghost:hover {
  color: var(--navy);
}
.plat-hero-new-ghost:hover i {
  transform: translateY(3px);
}

/* ── Proof ── */
.plat-hero-new-proof {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-100);
}

.plat-hero-new-proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.plat-hero-new-proof-item strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}
.plat-hero-new-proof-item span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.plat-hero-new-proof-sep {
  width: 1px;
  height: 36px;
  background: var(--gray-100);
  flex-shrink: 0;
}

/* ── Imagem ── */
.plat-hero-new-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.plat-hero-new-img {
  width: 100%;
  max-width: 580px;
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(19,34,54,0.07),
    0 24px 80px rgba(19,34,54,0.14),
    0 8px 24px rgba(19,34,54,0.08);
  display: block;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .plat-hero-new-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
  }
  .plat-hero-new-h1 { max-width: 100%; }
  /* Imagem: limita altura para não dominar a tela em 1 coluna */
  .plat-hero-new-img {
    max-width: 100%;
    max-height: 360px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--r-lg);
  }
}

@media (max-width: 768px) {
  .plat-hero-new { padding-top: 70px; }
  .plat-hero-new-inner { padding: 3rem 0 2.5rem; gap: 2rem; }
  .plat-hero-new-h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .plat-hero-new-cta { gap: 1.25rem; }
  .plat-hero-new-proof { gap: 1.25rem; }
  .plat-hero-new-img { max-height: 280px; }
}

@media (max-width: 480px) {
  /* plat-hero-new: mesma abordagem — background-image na section, visual some */
  .plat-hero-new {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #0b1c32;
    min-height: 100svh;
    display: flex;
    align-items: flex-start;
  }
  .plat-hero-new-visual,
  .plat-hero-new-visual.anim-right,
  .plat-hero-new-visual.anim-right.visible {
    display: none !important;
  }
  .plat-hero-new > .container { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .plat-hero-new-inner {
    grid-template-columns: 1fr !important;
    padding: 6rem 0 3rem !important;
    gap: 0 !important;
  }
  .plat-hero-new-h1     { color: #ffffff !important; font-size: clamp(1.8rem, 7vw, 2.4rem) !important; }
  .plat-hero-new-accent { color: var(--green) !important; }
  .plat-hero-new-label  { color: var(--green) !important; }
  .plat-hero-new-sub    { display: block !important; color: rgba(255,255,255,0.85) !important; font-size: 0.95rem !important; line-height: 1.65 !important; }
  .plat-hero-new-proof  { display: flex !important; }
  .plat-hero-new .btn-lg { width: 100% !important; justify-content: center !important; }
  .plat-hero-new-cta { flex-direction: column !important; gap: 0.75rem !important; }
}

/* ─── PORTAL INTELIGENTE — HERO AZUL ────────────────────────── */
.pi-hero {
  background:
    radial-gradient(ellipse 120% 80% at -5% 50%, #0d2240 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 110% 30%, #071220 0%, transparent 60%),
    #0b1c32;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding-top: 50px;
}

.pi-hero-inner {
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
  gap: 5rem;
  width: 100%;
  padding: 5rem 0 1.5rem;
}

/* ── Texto ── */
.pi-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pi-hero-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
}

.pi-hero-h1 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 1.75rem;
  max-width: 600px;
}

.pi-hero-accent {
  color: var(--green);
}

.pi-hero-sub {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

/* ── CTAs ── */
.pi-hero-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.pi-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.pi-hero-ghost i { font-size: 0.75rem; transition: transform 0.3s; }
.pi-hero-ghost:hover { color: rgba(255,255,255,0.80); }
.pi-hero-ghost:hover i { transform: translateY(3px); }

/* ── Badges / chips ── */
.pi-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.pi-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.80);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.pi-badge i { color: var(--green); font-size: 0.7rem; }
.pi-badge:hover {
  background: rgba(55,221,0,0.10);
  border-color: rgba(55,221,0,0.30);
}

/* ── Imagem com glow ── */
.pi-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pi-hero-img-wrap {
  position: relative;
  display: inline-block;
}

.pi-hero-glow {
  position: absolute;
  inset: -24px;
  background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(55,221,0,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(20px);
}

.pi-hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(55,221,0,0.12),
    0 24px 80px rgba(0,0,0,0.55),
    0 8px 24px rgba(0,0,0,0.35);
  display: block;
}

/* ── Separador curvo ── */
.pi-divider {
  display: block;
  line-height: 0;
  margin-top: -2px;
  background: #0b1c32;
}
.pi-divider svg {
  width: 100%;
  height: 24px;
  display: block;
}

/* ─── SOLUÇÕES — HERO COM CARDS ─────────────────────────────── */

/* Esconde o bg-div no desktop — só mobile usa */
.sol-hero-bg { display: none; }

/* Grid específico: 48% texto / 52% cards */
.sol-hero-inner {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  gap: 4rem;
  width: 100%;
  padding: 5rem 0 2rem;
}

/* Stack vertical dos 3 cards */
.sol-hero-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Card individual */
.sol-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.sol-card:hover {
  background: rgba(55,221,0,0.07);
  border-color: rgba(55,221,0,0.25);
  transform: translateX(4px);
}

/* Card destacado (middle) */
.sol-card--active {
  background: rgba(55,221,0,0.08);
  border-color: rgba(55,221,0,0.30);
}
.sol-card--active:hover {
  background: rgba(55,221,0,0.13);
  border-color: rgba(55,221,0,0.45);
}

/* Ícone do card */
.sol-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(55,221,0,0.10);
  border: 1px solid rgba(55,221,0,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green);
  transition: background 0.2s;
}
.sol-card:hover .sol-card-icon {
  background: rgba(55,221,0,0.18);
}

/* Corpo do card */
.sol-card-body {
  flex: 1;
  min-width: 0;
}
.sol-card-tag {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--green);
  opacity: 0.7;
  margin-bottom: 0.18rem;
  text-transform: uppercase;
}
.sol-card-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}
.sol-card-desc {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.50);
  line-height: 1.45;
  margin: 0;
}

/* Seta direita */
.sol-card-arrow {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.20);
  transition: color 0.2s, transform 0.2s;
}
.sol-card:hover .sol-card-arrow {
  color: var(--green);
  transform: translateX(3px);
}

/* Badges como links */
.pi-hero-badges a.pi-badge {
  text-decoration: none;
}
.pi-hero-badges a.pi-badge:hover {
  background: rgba(55,221,0,0.12);
  border-color: rgba(55,221,0,0.35);
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .sol-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 0 3rem;
  }
  .pi-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
  }
  .pi-hero-h1 { max-width: 100%; }
  /* Imagem: limita altura para não dominar a tela em 1 coluna */
  .pi-hero-img {
    max-width: 100%;
    max-height: 360px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--r-lg);
  }
  /* Glow: redimensiona junto com a imagem */
  .pi-hero-glow { inset: -12px; }
}
@media (max-width: 768px) {
  .pi-hero { padding-top: 70px; }
  .sol-hero-inner { padding: 3rem 0 2rem; gap: 2rem; }
  .pi-hero-inner { padding: 3rem 0 2.5rem; gap: 2rem; }
  .pi-hero-h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .pi-hero-cta { gap: 1.25rem; }
  .pi-hero-badges { gap: 0.5rem; }
  .pi-hero-img { max-height: 280px; }
  .sol-card { padding: 0.9rem 1rem; }
  .sol-card-desc { display: none; }
  .sol-hero-cards { gap: 0.6rem; }
  /* solucoes.html — mesma abordagem: background-image na section, visual some */
  .sol-hero {
    background-image: linear-gradient(to bottom right, rgba(7,18,32,0.88) 0%, rgba(7,18,32,0.80) 50%, rgba(7,18,32,0.45) 100%), var(--hero-mobile-img);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #0b1c32;
    min-height: 100svh;
    display: flex;
    align-items: flex-start;
  }
  .sol-hero .pi-hero-visual,
  .sol-hero .pi-hero-visual.anim-right,
  .sol-hero .pi-hero-visual.anim-right.visible {
    display: none !important;
  }
  .sol-hero > .container { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .sol-hero .pi-hero-inner {
    grid-template-columns: 1fr !important;
    padding: 6rem 0 3rem !important;
    gap: 0 !important;
  }
  .sol-hero .pi-hero-h1     { color: #ffffff !important; font-size: clamp(1.8rem, 7vw, 2.4rem) !important; }
  .sol-hero .pi-hero-accent { color: var(--green) !important; }
  .sol-hero .pi-hero-label  { color: var(--green) !important; }
  .sol-hero .pi-hero-sub    { display: block !important; color: rgba(255,255,255,0.85) !important; font-size: 0.95rem !important; line-height: 1.65 !important; }
  .sol-hero .pi-hero-badges { display: flex !important; }
  .sol-hero .pi-hero-cta    { display: flex !important; flex-direction: column !important; gap: 0.75rem !important; }
  .sol-hero .btn-lg { width: 100% !important; justify-content: center !important; }
}
@media (max-width: 480px) {
  /* ── Nova abordagem: background-image na section, visual some do DOM ── */
  .pi-hero {
    background-image: linear-gradient(to bottom right, rgba(7,18,32,0.88) 0%, rgba(7,18,32,0.80) 50%, rgba(7,18,32,0.45) 100%), var(--hero-mobile-img);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #0b1c32;
    min-height: 100svh;
    display: flex;
    align-items: flex-start;
  }
  /* Oculta completamente a div visual — não precisa mais dela no mobile */
  .pi-hero-visual,
  .pi-hero-visual.anim-right,
  .pi-hero-visual.anim-right.visible {
    display: none !important;
  }
  /* Texto ocupa coluna única */
  .pi-hero > .container { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .pi-hero-inner {
    grid-template-columns: 1fr !important;
    padding: 6rem 0 3rem !important;
    gap: 0 !important;
  }
  .pi-hero-h1     { color: #ffffff !important; font-size: clamp(1.8rem, 7vw, 2.4rem) !important; }
  .pi-hero-accent { color: var(--green) !important; }
  .pi-hero-label  { color: var(--green) !important; }
  .pi-hero-sub    { display: block !important; color: rgba(255,255,255,0.85) !important; font-size: 0.95rem !important; line-height: 1.65 !important; }
  .pi-hero-badges { display: flex !important; }
  .pi-hero-cta    { display: flex !important; flex-direction: column !important; gap: 0.75rem !important; }
  .btn-lg { width: 100% !important; justify-content: center !important; }
}

/* ─── PARCEIROS — ECOSSISTEMA AMPLIADO (logos grid mobile) ─── */
@media (max-width: 768px) {
  .logos-ecossistema-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  .logos-ecossistema-grid img {
    height: 36px !important;
  }
}

/* ─── PORTAL INTELIGENTE — SEÇÃO O DIFERENCIAL ──────────────── */
.pi-diff-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}

.pi-diff-intro { }

.pi-diff-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.5rem;
}

.pi-diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

@media (max-width: 1024px) {
  .pi-diff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pi-diff-header { grid-template-columns: 1fr; gap: 2rem; }
  .pi-diff-grid { grid-template-columns: 1fr; }
}

/* ─── PORTAL INTELIGENTE — STRIP DE MÓDULOS ─────────────────── */
.pi-modules-strip {
  background: #f8fafc;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 2rem 0;
}

.pi-modules-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 1.25rem;
}

.pi-modules-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.pi-module-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--gray-100);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 1px 4px rgba(19,34,54,0.06);
}
.pi-module-chip i { color: var(--green); font-size: 0.75rem; }
.pi-module-chip:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(19,34,54,0.15);
}
.pi-module-chip:hover i { color: var(--green); }

@media (max-width: 600px) {
  .pi-modules-list { gap: 0.5rem; }
  .pi-module-chip { font-size: 0.75rem; padding: 0.45rem 0.9rem; }
}

/* ─── FEATURE CARD ──────────────────────────────────────── */
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 2rem;
  box-shadow: var(--sh-xs);
  transition: all var(--t-base) var(--ease);
}
.feature-card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--gray-200);
  transform: translateY(-3px);
}

/* variante dark — usada em seções bg-navy */
.feature-card--dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
}
.feature-card--dark:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transform: translateY(-3px);
}
.feature-card--dark h4 { color: #fff; }
.feature-card--dark p  { color: rgba(255,255,255,0.65); }
.feature-card--dark .feature-card-icon i { color: var(--green); }
/* ─── MÓDULO 05 — imagens lado a lado ───────────────────────── */
.mod5-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.mod5-img-wrap {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  aspect-ratio: 4 / 3;
}

.mod5-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.mod5-img-wrap:hover .mod5-img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .mod5-images {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ─── FEATURE CARD ICON ─────────────────────────────────────── */
.feature-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-card-icon i { font-size: 1.1rem; color: var(--green); }
.feature-card h4 { color: var(--ink); margin-bottom: 0.5rem; }
.feature-card p  { font-size: 0.875rem; }

/* ─── INTEG GRID ────────────────────────────────────────── */
.integ-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.integ-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  text-align: center;
  transition: all var(--t-base) var(--ease);
}
.integ-item:hover {
  border-color: rgba(55,221,0,0.30);
  background: rgba(55,221,0,0.04);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.integ-item i {
  font-size: 1.6rem;
  color: #37dd00;
}
.integ-item span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .integ-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 560px) {
  .integ-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── HIGHLIGHT BLOCK (navy bg accent) ─────────────────── */
.highlight-block {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 3rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.highlight-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), transparent 70%);
}
.highlight-block h3 { color: var(--white); margin-bottom: 0.75rem; }
.highlight-block p  { color: rgba(255,255,255,0.6); }

/* ─── STAT ROW ──────────────────────────────────────────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  overflow: hidden;
}
.stat-cell {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--gray-100);
  text-align: left;
}
.stat-cell:last-child { border-right: none; }
.stat-cell-num {
  font-size: 2rem; font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-cell-label { font-size: 0.8rem; color: var(--gray-400); line-height: 1.4; }

/* ─── INTEGRATION LOGO GRID ─────────────────────────────── */
.integ-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.integ-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-sm);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--t-base) var(--ease);
  box-shadow: var(--sh-xs);
}
.integ-item:hover {
  border-color: rgba(19,34,54,0.15);
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}
.integ-item i    { font-size: 1.8rem; color: var(--gray-400); margin-bottom: 0.5rem; display: block; transition: color var(--t-base); }
.integ-item:hover i { color: var(--navy); }
.integ-item span { font-size: 0.72rem; font-weight: 600; color: var(--gray-500); }

/* ─── TIMELINE ──────────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--green), var(--gray-100));
  border-radius: 1px;
}
.timeline-item { padding: 0 0 2.5rem 2rem; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -2.45rem; top: 0.25rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px rgba(55,221,0,0.3);
}
.timeline-year {
  font-size: 0.68rem; font-weight: 800;
  color: var(--green); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 0.3rem;
}
.timeline-item h4 { color: var(--ink); margin-bottom: 0.3rem; }
.timeline-item p  { font-size: 0.875rem; }

/* ─── TEAM CARD ─────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  box-shadow: var(--sh-xs);
  transition: all var(--t-base) var(--ease);
}
.team-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.team-avatar i { font-size: 1.6rem; color: var(--green); }
.team-card h4  { color: var(--ink); font-size: 1rem; margin-bottom: 0.3rem; }
.team-card p   { font-size: 0.8rem; color: var(--gray-400); }

/* ─── FAQ ACCORDION ─────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  font-size: 1rem; font-weight: 600;
  color: var(--ink);
  transition: color var(--t-fast) var(--ease);
  width: 100%; background: none; border: none; text-align: left;
}
.faq-question:hover { color: var(--navy); }
.faq-question i { font-size: 0.75rem; color: var(--gray-400); transition: transform var(--t-base) var(--ease); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--green); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding-bottom: 1.5rem; font-size: 0.9rem; line-height: 1.75; }

/* ─── CONTACT FORM ──────────────────────────────────────── */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 3rem;
  box-shadow: var(--sh-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field-wrap { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.field-label { font-size: 0.8rem; font-weight: 600; color: var(--gray-800); }
.field-input,
.field-select,
.field-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--snow);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  color: var(--ink);
  transition: all var(--t-fast) var(--ease);
  outline: none;
}
.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(19,34,54,0.06);
}
.field-input.invalid,
.field-textarea.invalid { border-color: #e53e3e; }
.field-error { font-size: 0.75rem; color: #e53e3e; display: none; }
.field-textarea { resize: vertical; min-height: 130px; }

/* ─── BLOG POST CARD (full blog page) ───────────────────── */
.blog-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ─── DEMO PAGE FORM ─────────────────────────────────────── */
.demo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.demo-benefits { display: flex; flex-direction: column; gap: 1.5rem; }
.demo-benefit {
  display: flex; align-items: flex-start; gap: 1rem;
}
.demo-benefit-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--green-dim);
  border: 1px solid rgba(55,221,0,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--navy); font-size: 1rem;
}
.demo-benefit h4 { font-size: 0.95rem; color: var(--ink); margin-bottom: 0.25rem; }
.demo-benefit p  { font-size: 0.82rem; }

/* ─── BADGE NAV PILL ────────────────────────────────────── */
.badge-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.85rem;
  background: rgba(55,221,0,0.1);
  border: 1px solid rgba(55,221,0,0.25);
  border-radius: var(--r-full);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge-nav-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.8s ease infinite;
  flex-shrink: 0;
}

/* ─── BLOG FEATURED (destaque) ──────────────────────────── */
.blog-featured {
  display: grid;
  grid-template-columns: 42fr 58fr;
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  min-height: 380px;
}
.blog-featured-visual {
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 280px;
}
.blog-featured-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.blog-featured-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(55,221,0,0.07) 0%, transparent 65%);
}
.blog-featured-icon-wrap {
  position: relative;
  z-index: 2;
  width: 88px; height: 88px;
  border-radius: var(--r-lg);
  background: rgba(55,221,0,0.1);
  border: 1px solid rgba(55,221,0,0.2);
  display: flex; align-items: center; justify-content: center;
}
.blog-featured-icon-wrap i { font-size: 2.6rem; color: rgba(55,221,0,0.7); }
.blog-featured-body {
  padding: 3rem 3.5rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured-body h2 {
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.blog-featured-body p { font-size: 0.9rem; line-height: 1.75; margin-bottom: 0; }
.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--gray-400);
}
.blog-featured-meta i { color: var(--green); }

/* ─── BLOG CATEGORY LABEL ────────────────────────────────── */
.blog-cat-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.6rem;
}

/* ─── BLOG FILTERS ───────────────────────────────────────── */
.blog-filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}
.blog-filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-500);
  background: transparent;
  border: 1.5px solid var(--gray-100);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}
.blog-filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--white);
}
.blog-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ─── BLOG GRID V3 (new design system) ──────────────────── */
.blog-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.blog-card-v3 {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-xs);
  transition: all var(--t-base) var(--ease);
}
.blog-card-v3:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
  border-color: var(--gray-200);
}
.blog-card-thumb {
  height: 168px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.blog-card-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
}
.blog-card-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(55,221,0,0.07) 0%, transparent 70%);
}
.blog-card-thumb i {
  position: relative;
  z-index: 2;
  font-size: 2.2rem;
  color: rgba(55,221,0,0.55);
}
.blog-card-body {
  padding: 1.75rem 1.75rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}
.blog-card-body p {
  font-size: 0.83rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  margin-top: auto;
}
.blog-date { font-size: 0.72rem; color: var(--gray-400); display: flex; align-items: center; gap: 0.4rem; }
.blog-date i { font-size: 0.68rem; color: var(--green); }
.blog-read-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--t-fast) var(--ease);
}
.blog-read-link:hover { gap: 0.6rem; color: var(--green); }

/* ─── BLOG NEWSLETTER ────────────────────────────────────── */
.blog-newsletter {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 3rem 3.5rem;
  position: relative;
  overflow: hidden;
}
.blog-newsletter::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), transparent 70%);
}
.blog-newsletter::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55,221,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.blog-newsletter-inner {
  position: relative; z-index: 2;
}
.blog-newsletter-inner h3 {
  color: var(--white);
  font-size: 1.3rem;
}
.blog-newsletter-inner p { color: rgba(255,255,255,0.55); }
.blog-newsletter-inner .eyebrow { color: var(--green); }
.blog-newsletter-form {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.blog-newsletter-form .field-input {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}
.blog-newsletter-form .field-input::placeholder { color: rgba(255,255,255,0.35); }
.blog-newsletter-form .field-input:focus {
  background: rgba(255,255,255,0.1);
  border-color: rgba(55,221,0,0.5);
  box-shadow: 0 0 0 3px rgba(55,221,0,0.08);
}

/* ─── RESPONSIVE: PAGES ─────────────────────────────────── */
@media (max-width: 1024px) {
  .integ-grid    { grid-template-columns: repeat(4, 1fr); }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .stat-row      { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3),
  .stat-cell:nth-child(4) { border-top: 1px solid var(--gray-100); }
  .demo-layout   { grid-template-columns: 1fr; gap: 3rem; }
  .blog-grid-v3  { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; min-height: auto; }
  .blog-featured-visual { min-height: 220px; }
}

@media (max-width: 768px) {
  .integ-grid    { grid-template-columns: repeat(3, 1fr); }
  .form-row      { grid-template-columns: 1fr; }
  .blog-grid-full { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 2rem; }
  .highlight-block { padding: 2rem; }
  .blog-featured-body { padding: 2rem; }
  .blog-newsletter { padding: 2rem; }
  .blog-newsletter-form { flex-direction: column; }
  .blog-newsletter-form .field-input { min-width: 0; }
  .blog-newsletter-form .btn { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  .split-55-45,
  .split-40-60,
  .split-60-40 { grid-template-columns: 1fr; gap: 3rem; }
  .page-hero   { padding: 8rem 0 4rem; }
  /* Cloud & SaaS row-reverse: garante texto antes do dashboard no mobile */
  [data-sol="cloud"].split-55-45 > *:first-child { order: 1; }
  [data-sol="cloud"].split-55-45 > *:last-child  { order: 2; }
}

@media (max-width: 540px) {
  .integ-grid    { grid-template-columns: repeat(2, 1fr); }
  .team-grid     { grid-template-columns: 1fr; }
  .blog-grid-full { grid-template-columns: 1fr; }
  .blog-grid-v3  { grid-template-columns: 1fr; }
  .stat-row      { grid-template-columns: 1fr; }
  .stat-cell     { border-right: none !important; border-top: 1px solid var(--gray-100); }
  .stat-cell:first-child { border-top: none; }
  .blog-filters  { gap: 0.4rem; }
  .blog-filter-btn { padding: 0.4rem 0.8rem; font-size: 0.72rem; }
}

/* ─── LEGAL PAGES ────────────────────────────────────────── */
.legal-update-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
}

.legal-container {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Table of Contents */
.legal-toc {
  position: sticky;
  top: 6rem;
  background: var(--surface-snow);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 1.5rem;
}
.legal-toc-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.85rem;
}
.legal-toc ol {
  list-style: none;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.legal-toc ol li {
  counter-increment: toc;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.legal-toc ol li::before {
  content: counter(toc) ".";
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-400);
  min-width: 1.4rem;
  padding-top: 0.55rem;
  flex-shrink: 0;
}
.legal-toc a {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-600);
  padding: 0.45rem 0;
  line-height: 1.35;
  transition: color var(--dur-fast) var(--ease);
  text-decoration: none;
}
.legal-toc a:hover { color: var(--navy); }

/* Article */
.legal-article {
  min-width: 0;
}
.legal-article section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-100);
}
.legal-article section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.legal-article h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-top: 0.25rem;
  scroll-margin-top: 6rem;
}
.legal-article h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}
.legal-article p {
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 0.85rem;
}
.legal-article p:last-child { margin-bottom: 0; }
.legal-article ul,
.legal-article ol {
  padding-left: 1.4rem;
  margin-bottom: 0.85rem;
}
.legal-article ul { list-style: disc; }
.legal-article li {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 0.35rem;
}
.legal-article a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--dur-fast) var(--ease);
}
.legal-article a:hover { color: var(--green); }
.legal-article strong { color: var(--gray-800); font-weight: 600; }

/* Legal contact list */
.legal-contact-list {
  list-style: none !important;
  padding-left: 0 !important;
}
.legal-contact-list li {
  padding: 0.3rem 0;
}

/* Legal table */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.87rem;
}
.legal-table th {
  background: var(--surface-navy);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.legal-table td {
  padding: 0.7rem 1rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.5;
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table tr:hover td { background: var(--surface-snow); }

/* ─── BLOG POST PAGE ─────────────────────────────────────── */
.post-hero {
  background: var(--navy-deep);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.post-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.post-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-dim);
  border: 1px solid rgba(55,221,0,0.25);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--r-full);
  margin-bottom: 1.25rem;
}
.post-hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.025em;
  max-width: 820px;
  margin-bottom: 1.25rem;
}
.post-meta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.post-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
}
.post-meta-item i { font-size: 0.75rem; }
.post-author-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 2px solid rgba(55,221,0,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--green);
  flex-shrink: 0;
}

/* Post layout */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}
.post-content {
  min-width: 0;
}
.post-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}
.post-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2.5rem 0 0.85rem;
  scroll-margin-top: 5rem;
}
.post-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.75rem 0 0.6rem;
}
.post-content ul,
.post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.post-content li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
}
.post-content strong { color: var(--gray-800); font-weight: 600; }
.post-content a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.post-content a:hover { color: var(--green); }
.post-content blockquote {
  border-left: 3px solid var(--green);
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--surface-snow);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.post-content blockquote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  margin: 0;
  line-height: 1.7;
}
.post-content .post-callout {
  background: var(--surface-snow);
  border: 1px solid var(--gray-100);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.post-content .post-callout p {
  margin: 0;
  font-size: 0.93rem;
}

/* Post sidebar */
.post-sidebar {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.post-toc {
  background: var(--surface-snow);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 1.5rem;
}
.post-toc-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.85rem;
}
.post-toc ol {
  list-style: none;
  counter-reset: ptoc;
  display: flex;
  flex-direction: column;
}
.post-toc ol li { counter-increment: ptoc; }
.post-toc a {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-600);
  padding: 0.4rem 0;
  text-decoration: none;
  line-height: 1.35;
  transition: color var(--dur-fast) var(--ease);
}
.post-toc a::before {
  content: counter(ptoc) ".";
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-400);
  min-width: 1.3rem;
  padding-top: 0.06rem;
  flex-shrink: 0;
}
.post-toc a:hover { color: var(--navy); }

/* Post CTA card */
.post-cta-card {
  background: var(--surface-navy);
  border-radius: var(--r-md);
  padding: 1.75rem;
  text-align: left;
}
.post-cta-card .post-cta-icon {
  width: 44px; height: 44px;
  background: var(--green-dim);
  border: 1px solid rgba(55,221,0,0.25);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--green);
}
.post-cta-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.post-cta-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.post-cta-card .btn { width: 100%; justify-content: flex-start; }

/* Post tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-100);
}
.post-tag {
  display: inline-block;
  background: var(--surface-ice);
  border: 1px solid var(--gray-100);
  color: var(--gray-600);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-full);
}

/* Post author box */
.post-author-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--surface-snow);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 1.5rem;
  margin-top: 2.5rem;
}
.post-author-box-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 2px solid rgba(55,221,0,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: var(--green);
  flex-shrink: 0;
}
.post-author-box-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.post-author-box-role {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}
.post-author-box p {
  font-size: 0.83rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

/* Related posts */
.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

/* ─── LEGAL + POST RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .related-posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .legal-container { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .post-layout { gap: 2.5rem; }
}
@media (max-width: 540px) {
  .related-posts-grid { grid-template-columns: 1fr; }
  .post-author-box { flex-direction: column; text-align: center; }
  .post-meta-row { gap: 0.75rem; }
}

/* ─── SOBRE.HTML — STATS BAR ICONS ─────────────────────────
   Wrapper icon above the number in each stat cell            */
.sobre-stat-row .stat-cell {
  text-align: center;
}
.sobre-stat-icon {
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 0.6rem;
  line-height: 1;
  display: block;
}
.sobre-stat-icon i {
  font-size: inherit;
  color: inherit;
}

/* ─── SOBRE.HTML — FEATURE CARD NUMBER BADGE ───────────────
   Numeric label (01 / 02 …) above the icon inside the
   .feature-card-icon square                                  */
.feature-card-icon {
  flex-direction: column;
  gap: 0.25rem;
  height: auto;
  min-height: 48px;
  padding: 0.75rem 0.5rem;
  width: auto;
  min-width: 48px;
  align-items: center;
  justify-content: center;
}
.feature-card-num {
  display: block;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--green);
  text-transform: uppercase;
  line-height: 1;
  opacity: 0.85;
}

/* ─── SOBRE.HTML — ALIANÇA ESTRATÉGICA CARDS ───────────────
   Three-column grid with logo header + body text             */
.alianca-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.alianca-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: all var(--t-base) var(--ease);
}
.alianca-card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--gray-200);
  transform: translateY(-3px);
}
.alianca-card-logo {
  padding: 1.5rem 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  min-height: 72px;
}
.alianca-card-body {
  padding: 1.75rem 2rem;
}
.alianca-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.alianca-card-body p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

/* Responsive: aliança + sobre stats */
@media (max-width: 900px) {
  .alianca-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .alianca-grid { grid-template-columns: 1fr; }
  .sobre-stat-row .stat-cell { text-align: left; }
}

/* ═══════════════════════════════════════════════════════════
   SOBRE.HTML — UX REDESIGN BATCH
   ─────────────────────────────────────────────────────────
   1. Propósito section — white bg + top accent line
   2. About visual card — fixed proportions
   3. História section — snow bg + 2-col editorial split
   4. Padrão de Entrega — white bg + number badge outside icon
   5. 4 Compromissos — 2×2 grid, generous padding
   6. Prova social — uniform logo pills
═══════════════════════════════════════════════════════════ */

/* ── 1. PROPÓSITO — white bg, linha verde no topo ─────── */
.sobre-proposito-section {
  border-top: 3px solid var(--green);
}

/* ── 2. ABOUT VISUAL CARD — proporções fixas, foto cobre tudo */
.sobre-visual-card {
  min-height: 480px !important;
  padding: 2.5rem !important;
}
.sobre-visual-card .about-photo {
  object-fit: cover;
  object-position: center top;
}
/* badge fixado no topo-esquerdo do card */
.sobre-badge-anchored {
  position: absolute !important;
  top: 2rem;
  left: 2rem;
  z-index: 2 !important;
  bottom: auto !important;
}
/* certs fixados no fundo do card */
.sobre-cert-anchored {
  position: absolute !important;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 2 !important;
  margin-top: 0 !important;
}

/* ── 3. HISTÓRIA — dark bg + texto branco ─────────────── */
.sobre-historia-section {
  border-top: 1px solid var(--gray-100);
}
.sobre-historia-dark {
  background: var(--navy-deep) !important;
  border-top: none;
  position: relative;
}

/* eyebrow, títulos e parágrafos em branco */
.sobre-historia-dark .eyebrow           { color: var(--green); }
.sobre-historia-dark h2                 { color: #fff; }
.sobre-historia-dark .lead              { color: rgba(255,255,255,0.60); }
.sobre-historia-dark .sobre-hist-body p { color: rgba(255,255,255,0.65); }
/* quote com borda verde, texto branco */
.sobre-historia-dark .sobre-hist-quote  { color: rgba(255,255,255,0.85); border-left-color: var(--green); }
/* ano fantasma — branco opacidade baixa */
.sobre-historia-dark .sobre-hist-year-mark { color: #fff; opacity: 0.06; }
/* timeline — linha, dot e textos em claro */
.sobre-historia-dark .timeline::before  { background: linear-gradient(180deg, var(--green), rgba(255,255,255,0.08)); }
.sobre-historia-dark .timeline-dot      { background: var(--green); border-color: var(--navy-deep); box-shadow: 0 0 0 2px rgba(55,221,0,0.35); }
.sobre-historia-dark .timeline-year     { color: var(--green); }
.sobre-historia-dark .timeline-item h4  { color: #fff; }
.sobre-historia-dark .timeline-item p   { color: rgba(255,255,255,0.55); }
.sobre-hist-split {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: flex-start;
}
/* âncora esquerda: ano grande + quote */
.sobre-hist-anchor {
  position: sticky;
  top: 7rem;
}
.sobre-hist-year-mark {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--navy);
  opacity: 0.08;
  margin-bottom: 1.5rem;
  user-select: none;
}
.sobre-hist-quote {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
  color: var(--navy);
  padding-left: 1.25rem;
  border-left: 3px solid var(--green);
  margin: 0;
  font-style: italic;
}
/* coluna direita dos parágrafos */
.sobre-hist-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-600);
}

/* ── 4. PADRÃO DE ENTREGA — número fora do ícone ─────── */
.sobre-entrega-section {
  border-top: 1px solid var(--gray-100);
}
/* número agora é irmão antes do .feature-card-icon */
.sobre-entrega-section .feature-card-num {
  display: block;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  opacity: 0.9;
}
/* ícone volta ao tamanho original sem o badge interno */
.sobre-entrega-section .feature-card-icon {
  flex-direction: row;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;
  margin-bottom: 1.25rem;
}
.sobre-entrega-section .feature-card-icon i {
  font-size: 1.1rem;
}

/* ── 5. 4 COMPROMISSOS — 2×2 grid espaçoso ───────────── */
.sobre-compromissos-section {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

/* glow verde suave no canto */
.sobre-compromissos-section::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55,221,0,0.05) 0%, transparent 68%);
  pointer-events: none;
}
.pillars-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 60px rgba(0,0,0,0.35);
}
.pillar-item-lg {
  padding: 3.5rem 3rem;
  background: rgba(255,255,255,0.03);
  transition: background var(--t-base) var(--ease);
  cursor: default;
}
.pillar-item-lg:hover {
  background: rgba(255,255,255,0.07);
}
.pillar-icon-wrap-lg {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: rgba(55,221,0,0.1);
  border: 1px solid rgba(55,221,0,0.22);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
  transition: background var(--t-base), border-color var(--t-base);
}
.pillar-item-lg:hover .pillar-icon-wrap-lg {
  background: rgba(55,221,0,0.18);
  border-color: rgba(55,221,0,0.4);
}
.pillar-icon-wrap-lg i {
  font-size: 1.5rem;
  color: var(--green);
}
.pillar-item-lg h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.pillar-item-lg p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.80);
  max-width: 340px;
}

/* ── 6. PROVA SOCIAL — pills uniformes ────────────────── */
.sobre-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: center;
}
.sobre-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-sm);
  padding: 0.65rem 1.4rem;
  height: 52px;
  flex-shrink: 0;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.sobre-logo-pill:hover {
  border-color: var(--gray-200);
  box-shadow: 0 4px 14px rgba(19,34,54,0.09);
  transform: translateY(-2px);
}
.sobre-logo-pill img {
  height: 24px;
  width: auto;
  max-width: 110px;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(0.2) opacity(0.82);
  transition: filter 0.25s ease;
}
.sobre-logo-pill:hover img {
  filter: grayscale(0) opacity(1);
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .sobre-hist-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .sobre-hist-anchor { position: static; }
  .sobre-hist-year-mark { font-size: 3.5rem; margin-bottom: 0.75rem; }
  .pillars-grid-2x2 { grid-template-columns: 1fr 1fr; }
  .pillar-item-lg { padding: 2.75rem 2rem; }
}
@media (max-width: 700px) {
  .pillars-grid-2x2 { grid-template-columns: 1fr; }
  .sobre-visual-card { min-height: 380px !important; }
  .sobre-logo-pill { height: 46px; padding: 0.5rem 1rem; }
  .sobre-logo-pill img { height: 20px; }
}

/* ════════════════════════════════════════════════════════════
   UX MOBILE — Pages v1
   Corrige: page-hero padding, post layout, blog featured,
   legal container, form inputs, CTAs, plat-hero CTA gap,
   contact-form, stat-row, highlight-block, pillar-item-lg
════════════════════════════════════════════════════════════ */

/* ─── Page hero — padding mobile corrigido ─────────────── */
@media (max-width: 768px) {
  .page-hero { padding: 7.5rem 0 4rem; }
  .page-hero h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
}
@media (max-width: 480px) {
  .page-hero { padding: 6.5rem 0 3rem; }
  .page-hero h1 { font-size: clamp(1.5rem, 7.5vw, 2rem); }
  .page-hero-content { max-width: 100%; }
}

/* ─── Post hero — padding ajustado ─────────────────────── */
@media (max-width: 640px) {
  .post-hero { padding: 6.5rem 0 3.5rem; }
  .post-hero h1 { font-size: clamp(1.5rem, 6.5vw, 2rem); }
  .post-meta-row { gap: 0.6rem; }
}

/* ─── Post content — tipografia e espaçamento mobile ───── */
@media (max-width: 640px) {
  .post-content p  { font-size: 0.95rem; line-height: 1.8; }
  .post-content h2 { font-size: 1.2rem; }
  .post-content h3 { font-size: 1rem; }
  .post-content blockquote { padding: 1rem 1.1rem; }
}

/* ─── Blog featured — imagem com altura adequada ───────── */
@media (max-width: 640px) {
  .blog-featured-visual { min-height: 180px; }
  .blog-featured-body   { padding: 1.5rem; }
  .blog-featured-body h2 { font-size: 1.15rem; }
  .blog-card-body { padding: 1.25rem; }
  .blog-card-thumb { height: 140px; }
}

/* ─── Legal container — sidebar vira accordion mobile ──── */
@media (max-width: 640px) {
  .legal-container { gap: 2rem; }
  .legal-toc { padding: 1rem; }
  .legal-article h2 { font-size: 1.15rem; }
  .legal-article section { margin-bottom: 2rem; padding-bottom: 2rem; }
}

/* ─── Legal table — scroll horizontal em mobile ─────────── */
@media (max-width: 768px) {
  .legal-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--r-sm);
  }
  .legal-table { min-width: 520px; }
}

/* ─── Contact form — padding e inputs em mobile ─────────── */
@media (max-width: 480px) {
  .contact-form-wrap { padding: 1.5rem; border-radius: var(--r-md); }
  .field-input,
  .field-select,
  .field-textarea {
    font-size: 1rem; /* Evita zoom automático iOS (< 16px dispara zoom) */
    padding: 0.8rem;
  }
}

/* ─── Demo layout — benefits padding mobile ─────────────── */
@media (max-width: 640px) {
  .demo-benefit { gap: 0.85rem; }
  .demo-benefit-icon { width: 38px; height: 38px; flex-shrink: 0; }
}

/* ─── Plat-hero CTA — coluna em telas pequenas ──────────── */
@media (max-width: 480px) {
  .plat-hero-cta,
  .plat-hero-new-cta,
  .pi-hero-cta {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .plat-cta-primary,
  .plat-hero-new .btn {
    min-height: 48px;
    width: 100%;
    justify-content: center;
  }
}

/* ─── Highlight block — padding mobile ──────────────────── */
@media (max-width: 480px) {
  .highlight-block { padding: 1.5rem; border-radius: var(--r-md); }
}

/* ─── Pillar item lg — padding mobile ───────────────────── */
@media (max-width: 480px) {
  .pillar-item-lg { padding: 2rem 1.5rem; }
  .pillar-icon-wrap-lg { width: 52px; height: 52px; margin-bottom: 1.25rem; }
  .pillar-item-lg h4 { font-size: 1.05rem; }
  .pillar-item-lg p  { font-size: 0.9rem; max-width: 100%; }
}

/* ─── Stat row — cells menores no mobile ────────────────── */
@media (max-width: 480px) {
  .stat-cell { padding: 1.25rem 1rem; }
  .stat-cell-num { font-size: 1.6rem; }
}

/* ─── Blog newsletter form — input não transborda ───────── */
@media (max-width: 480px) {
  .blog-newsletter { padding: 1.75rem 1.25rem; border-radius: var(--r-lg); }
  .blog-newsletter-form .field-input { font-size: 1rem; }
}

/* ─── Module card — remove overflow em mobile ───────────── */
@media (max-width: 640px) {
  .module-card { padding: 1.5rem 1.25rem; border-radius: var(--r-md); }
  .module-icon-box { width: 48px; height: 48px; font-size: 1.25rem; margin-bottom: 1rem; }
}

/* ─── Feature card — padding reduzido em mobile ─────────── */
@media (max-width: 480px) {
  .feature-card { padding: 1.5rem; }
}

/* ─── Blog filters — scroll horizontal em mobile ────────── */
@media (max-width: 480px) {
  .blog-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 1rem;
  }
  .blog-filters::-webkit-scrollbar { display: none; }
  .blog-filter-btn { flex-shrink: 0; min-height: 36px; }
}

/* ─── Sobre: visual card em mobile ──────────────────────── */
@media (max-width: 480px) {
  .sobre-badge-anchored { top: 1.25rem; left: 1.25rem; }
  .sobre-cert-anchored  { bottom: 1rem; left: 1rem; right: 1rem; }
  .sobre-hist-split     { gap: 2rem; }
}

/* ─── Sobre: historia quote menor em mobile ─────────────── */
@media (max-width: 480px) {
  .sobre-hist-quote { font-size: 0.92rem; }
  .sobre-hist-body p { font-size: 0.9rem; }
}

/* ─── Related posts — cards compactos em mobile ─────────── */
@media (max-width: 480px) {
  .related-posts-grid { gap: 1rem; }
}

/* ─── FAQ — question com target de toque adequado ───────── */
.faq-question {
  min-height: 44px;
}

/* ─── Grid utilitários — mobile fallback ────────────────── */
@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; gap: 1.25rem; }
}
@media (max-width: 480px) {
  .grid-2 { grid-template-columns: 1fr; }
}

/* ─── Inputs: previne zoom iOS (font-size < 16px) ───────── */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="search"],
  select,
  textarea {
    font-size: max(1rem, 16px);
  }
}
