/* ============================================================
   solucoes.css — Tutela Digital®
   Vertical de Soluções: Governo · Empresas · Pessoas
   
   Filosofia: "Institutional Precision"
   — Autoridade sem peso. Clareza sem frieza.
   — Elementos gráficos inspirados em carimbo, lacre e cadeia.
   — Tonalidades preservadas, estrutura inteiramente nova.
   ============================================================
   
   Escopo: body.solucoes-page
   Variantes: body.solucoes-page.governo-page
              body.solucoes-page.empresas-page
              body.solucoes-page.pessoas-page
   
   Índice:
     § 0  Tokens de design (CSS custom properties)
     § 1  Reset & base
     § 2  Elementos gráficos decorativos (SVG inline, pseudo)
     § 3  Hero — identidade por vertical
     § 4  Seção intro com régua editorial
     § 5  Bloco normativo (cards de lei)
     § 6  Contraste semântico (sem vs com)
     § 7  Checklist de benefícios
     § 8  Barras de impacto (contexto visual)
     § 9  CTA final
     § 10 Selo de conformidade
     § 11 Animações & motion
     § 12 Responsivo
   ============================================================ */


/* ============================================================
   § 0  TOKENS DE DESIGN
   ============================================================ */

body.solucoes-page {

  /* Marca — verde institucional Tutela Digital */
  --sol-brand-deep:      #071a11;
  --sol-brand-dark:      #0c2418;
  --sol-brand-mid:       #174d38;
  --sol-brand-surface:   #1e5535;
  --sol-accent:          #2db560;
  --sol-accent-light:    #a8d9b8;
  --sol-accent-glow:     rgba(45, 181, 96, 0.18);

  /* Variantes por vertical */
  --sol-vertical-hue:    #2db560;   /* sobrescrito por .governo-page etc. */
  --sol-vertical-dim:    rgba(45, 181, 96, 0.12);

  /* Superfícies */
  --sol-bg:              #f4f7f5;
  --sol-bg-white:        #ffffff;
  --sol-bg-alt:          #eef2ef;
  --sol-bg-ink:          #0c2418;

  /* Tipografia */
  --sol-text-head:       #0a1e14;
  --sol-text-body:       #2c4038;
  --sol-text-muted:      #4a6358;
  --sol-text-faint:      #7f9a8c;

  /* Bordas */
  --sol-border:          rgba(10, 34, 24, 0.10);
  --sol-border-accent:   rgba(45, 181, 96, 0.30);

  /* Sombras */
  --sol-shadow-xs:       0 1px 3px rgba(7, 26, 17, 0.06);
  --sol-shadow-sm:       0 4px 14px rgba(7, 26, 17, 0.08);
  --sol-shadow-md:       0 12px 36px rgba(7, 26, 17, 0.13);
  --sol-shadow-lift:     0 20px 48px rgba(7, 26, 17, 0.16);

  /* Raios */
  --sol-r-sm:   8px;
  --sol-r-md:   14px;
  --sol-r-lg:   22px;
  --sol-r-xl:   32px;
  --sol-r-pill: 999px;

  /* Espaços */
  --sol-space-xs:  1rem;
  --sol-space-sm:  2rem;
  --sol-space-md:  3.5rem;
  --sol-space-lg:  5rem;
  --sol-space-xl:  7rem;

  /* Layout */
  --sol-max:   1060px;
  --sol-prose: 680px;

  /* Tipografia */
  --sol-ff-serif:  'Georgia', 'Times New Roman', serif;
  --sol-ff-sans:   'system-ui', sans-serif;
  --sol-ff-mono:   'ui-monospace', 'SF Mono', monospace;
}

/* Variante Governo — verde institucional base */
body.solucoes-page.governo-page {
  --sol-vertical-hue: #1d8a50;
  --sol-vertical-dim: rgba(29, 138, 80, 0.12);
  --sol-hero-mark:    "GOV";
}

/* Variante Empresas — tom mais neutro/profundo */
body.solucoes-page.empresas-page {
  --sol-vertical-hue: #2563a8;
  --sol-vertical-dim: rgba(37, 99, 168, 0.10);
  --sol-accent:       #2563a8;
  --sol-accent-light: #a8c4e8;
  --sol-accent-glow:  rgba(37, 99, 168, 0.15);
  --sol-brand-surface:#1a3d6e;
}

/* Variante Pessoas — tom mais cálido */
body.solucoes-page.pessoas-page {
  --sol-vertical-hue: #2a7a5c;
  --sol-vertical-dim: rgba(42, 122, 92, 0.12);
}


/* ============================================================
   § 1  RESET & BASE
   ============================================================ */

body.solucoes-page {
  background-color: var(--sol-bg);
  color: var(--sol-text-body);
  font-family: var(--sol-ff-sans);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.solucoes-page *,
body.solucoes-page *::before,
body.solucoes-page *::after {
  box-sizing: border-box;
}

body.solucoes-page .container {
  width: min(var(--sol-max), 92%);
  margin-inline: auto;
}

body.solucoes-page main > section {
  padding: var(--sol-space-md) 0;
}

/* Divisor entre seções */
body.solucoes-page .sol-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--sol-border) 20%,
    var(--sol-border) 80%,
    transparent
  );
  margin: 0 auto;
  width: min(860px, 92%);
}

/* Tipografia base */
body.solucoes-page h1,
body.solucoes-page h2,
body.solucoes-page h3,
body.solucoes-page h4 {
  font-family: var(--sol-ff-serif);
  color: var(--sol-text-head);
  line-height: 1.18;
  letter-spacing: -0.015em;
}

body.solucoes-page h1 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); }
body.solucoes-page h2 { font-size: clamp(1.4rem, 2.8vw, 2.1rem); margin-bottom: 1rem; }
body.solucoes-page h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.35rem; }
body.solucoes-page p  { color: var(--sol-text-body); margin-bottom: 0.85rem; }
body.solucoes-page p:last-child { margin-bottom: 0; }
body.solucoes-page ul { list-style: none; padding: 0; margin: 0; }
body.solucoes-page strong { color: var(--sol-text-head); font-weight: 600; }

/* Links padrão */
body.solucoes-page main a:not([class]) {
  color: var(--sol-vertical-hue);
  text-underline-offset: 3px;
  transition: opacity 0.15s;
}
body.solucoes-page main a:not([class]):hover { opacity: 0.75; }


/* ============================================================
   § 2  ELEMENTOS GRÁFICOS DECORATIVOS
   Filosofia: grafismos que evocam documentos oficiais —
   grids de pontos, bordas internas duplas, marcas de registro,
   linhas de corte, carimbos.
   ============================================================ */

/* Padrão de pontos — fundo sutil em seções claras */
.sol-dots-bg {
  position: relative;
  isolation: isolate;
}
.sol-dots-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(10, 34, 24, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.sol-dots-bg > * { position: relative; z-index: 1; }

/* Marca d'água de texto — decorativa em heroes */
.sol-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 3%;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.sol-watermark span {
  font-family: var(--sol-ff-serif);
  font-size: clamp(6rem, 16vw, 14rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.028);
  line-height: 1;
  white-space: nowrap;
}

/* Linha de "registro" — barra fina com código mono */
.sol-register-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--sol-ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sol-text-faint);
  margin-bottom: 1.75rem;
}
.sol-register-line::before,
.sol-register-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sol-border);
}

/* Índice de seção — numeral grande decorativo */
.sol-section-index {
  font-family: var(--sol-ff-serif);
  font-size: clamp(4.5rem, 9vw, 7.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--sol-brand-mid);
  opacity: 0.07;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* Tracejado de corte — usado em blocos de destaque */
.sol-cut-border {
  border: 1.5px dashed var(--sol-border-accent);
  border-radius: var(--sol-r-md);
  padding: 1.5rem 1.75rem;
  position: relative;
}
.sol-cut-border::before {
  content: '✦';
  position: absolute;
  top: -0.65em;
  left: 1.25rem;
  background: var(--sol-bg);
  padding: 0 0.4rem;
  font-size: 0.6rem;
  color: var(--sol-accent);
  letter-spacing: 0.1em;
}

/* Tag de categoria — etiqueta lateral */
.sol-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sol-ff-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sol-vertical-hue);
  background: var(--sol-vertical-dim);
  border: 1px solid var(--sol-border-accent);
  border-radius: var(--sol-r-pill);
  padding: 4px 10px;
}
.sol-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}

/* Ícone-selo quadrado — para cards normativos */
.sol-seal {
  width: 44px;
  height: 44px;
  border-radius: var(--sol-r-sm);
  background: var(--sol-bg-alt);
  border: 1px solid var(--sol-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}


/* ============================================================
   § 3  HERO — identidade por vertical
   ============================================================ */

body.solucoes-page .sol-hero {
  background: var(--sol-brand-dark);
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5.5rem);
}

/* Grade diagonal de fundo */
body.solucoes-page .sol-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      45deg,
      rgba(255,255,255,0.015) 1px,
      transparent 1px
    );
  background-size: 64px 64px;
  pointer-events: none;
}

/* Vinheta radial no canto inferior direito */
body.solucoes-page .sol-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--sol-accent-glow) 0%,
    transparent 68%
  );
  pointer-events: none;
}

body.solucoes-page .sol-hero .container {
  position: relative;
  z-index: 1;
}

/* Eyebrow com traço lateral */
body.solucoes-page .sol-hero-eyebrow {
  font-family: var(--sol-ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sol-accent-light);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
body.solucoes-page .sol-hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--sol-accent);
  opacity: 0.6;
}
body.solucoes-page .sol-hero-eyebrow::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sol-accent);
  opacity: 0.5;
}

/* Título */
body.solucoes-page .sol-hero h1 {
  color: #ffffff;
  max-width: 820px;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}

/* Destaque cromático no título */
body.solucoes-page .sol-hero h1 em {
  font-style: normal;
  color: var(--sol-accent-light);
  position: relative;
}

/* Subtítulo com barra lateral */
body.solucoes-page .sol-hero-subtitle {
  font-size: 1.075rem;
  color: rgba(255,255,255,0.68);
  max-width: 600px;
  line-height: 1.75;
  padding-left: 1.25rem;
  border-left: 2px solid var(--sol-accent);
  margin-bottom: 2.5rem;
}

/* Atributos de credencial — linha de badges */
body.solucoes-page .sol-hero-badges {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

body.solucoes-page .sol-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sol-ff-mono);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--sol-r-pill);
  padding: 5px 12px;
}
body.solucoes-page .sol-badge svg {
  opacity: 0.5;
  flex-shrink: 0;
}

/* Linha de corte no final do hero */
body.solucoes-page .sol-hero-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--sol-accent) 30%,
    var(--sol-accent-light) 50%,
    var(--sol-accent) 70%,
    transparent 100%
  );
  opacity: 0.35;
}


/* ============================================================
   § 4  SEÇÃO INTRO — régua editorial
   ============================================================ */

body.solucoes-page .sol-intro {
  background: var(--sol-bg-white);
  padding: var(--sol-space-md) 0;
}

body.solucoes-page .sol-intro-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

/* Coluna principal */
body.solucoes-page .sol-intro-lead {
  font-size: 1.1rem;
  line-height: 1.82;
  color: var(--sol-text-body);
}
body.solucoes-page .sol-intro-lead h2 {
  margin-bottom: 1.25rem;
}
body.solucoes-page .sol-intro-lead p + p {
  margin-top: 0.9rem;
}

/* Aside constitucional */
body.solucoes-page .sol-aside {
  background: var(--sol-bg);
  border-radius: var(--sol-r-md);
  border: 1px solid var(--sol-border);
  border-top: 3px solid var(--sol-vertical-hue);
  padding: 1.75rem;
  box-shadow: var(--sol-shadow-xs);
  position: relative;
  overflow: hidden;
}

/* Marca d'água sutil no aside */
body.solucoes-page .sol-aside::after {
  content: '§';
  position: absolute;
  right: -0.1em;
  bottom: -0.2em;
  font-family: var(--sol-ff-serif);
  font-size: 7rem;
  color: rgba(10, 34, 24, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

body.solucoes-page .sol-aside-label {
  font-family: var(--sol-ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sol-text-faint);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
body.solucoes-page .sol-aside-label::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sol-vertical-hue);
  flex-shrink: 0;
}

body.solucoes-page .sol-aside p {
  font-size: 0.9rem;
  color: var(--sol-text-muted);
  line-height: 1.72;
  position: relative;
  z-index: 1;
}

/* Link de referência no aside */
body.solucoes-page .sol-aside-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--sol-ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sol-vertical-hue);
  text-decoration: none;
  border-bottom: 1px solid var(--sol-border-accent);
  padding-bottom: 1px;
  margin-top: 0.75rem;
  transition: opacity 0.15s;
  position: relative;
  z-index: 1;
}
body.solucoes-page .sol-aside-link:hover { opacity: 0.72; text-decoration: none; }


/* ============================================================
   § 5  BLOCO NORMATIVO — cards de lei
   ============================================================ */

body.solucoes-page .sol-normativo {
  background: var(--sol-bg);
  padding: var(--sol-space-md) 0;
}
body.solucoes-page .sol-normativo.sol-dots-bg::before {
  opacity: 0.5;
}

body.solucoes-page .sol-normativo-header {
  max-width: var(--sol-prose);
  margin-bottom: 2.5rem;
}

body.solucoes-page .sol-lei-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

/* Card de lei */
body.solucoes-page .sol-lei-card {
  background: var(--sol-bg-white);
  border: 1px solid var(--sol-border);
  border-radius: var(--sol-r-md);
  padding: 1.6rem 1.5rem 1.5rem;
  box-shadow: var(--sol-shadow-xs);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

/* Acento de cor no topo do card */
body.solucoes-page .sol-lei-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--sol-brand-mid),
    var(--sol-accent)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

body.solucoes-page .sol-lei-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sol-shadow-md);
}
body.solucoes-page .sol-lei-card:hover::before {
  transform: scaleX(1);
}

/* Número da lei — etiqueta mono */
body.solucoes-page .sol-lei-num {
  font-family: var(--sol-ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sol-text-faint);
  border: 1px solid var(--sol-border);
  border-radius: var(--sol-r-sm);
  padding: 3px 8px;
  align-self: flex-start;
}

body.solucoes-page .sol-lei-card h3 {
  font-size: 1.0rem;
  color: var(--sol-text-head);
  margin: 0;
}

body.solucoes-page .sol-lei-card p {
  font-size: 0.875rem;
  color: var(--sol-text-muted);
  line-height: 1.62;
  margin: 0;
}

body.solucoes-page .sol-lei-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--sol-ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sol-vertical-hue);
  text-decoration: none;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--sol-border);
  transition: opacity 0.15s;
}
body.solucoes-page .sol-lei-link:hover { opacity: 0.7; text-decoration: none; }


/* ============================================================
   § 6  CONTRASTE SEMÂNTICO — sem vs com governança
   ============================================================ */

body.solucoes-page .sol-contraste {
  background: var(--sol-brand-dark);
  padding: var(--sol-space-md) 0;
  position: relative;
  overflow: hidden;
}

/* Detalhe geométrico — círculo fantasma */
body.solucoes-page .sol-contraste::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
body.solucoes-page .sol-contraste::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.03);
  pointer-events: none;
}

body.solucoes-page .sol-contraste-header {
  margin-bottom: 2.5rem;
  position: relative;
}
body.solucoes-page .sol-contraste-header h2 {
  color: var(--sol-accent-light);
}
body.solucoes-page .sol-contraste-header p {
  color: rgba(255,255,255,0.62);
  max-width: 600px;
  font-size: 1.025rem;
}

/* Grid de comparação */
body.solucoes-page .sol-contraste-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
}

/* Coluna */
body.solucoes-page .sol-col {
  border-radius: var(--sol-r-md);
  padding: 1.75rem 1.5rem;
}

body.solucoes-page .sol-col-neg {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
body.solucoes-page .sol-col-pos {
  background: rgba(45, 181, 96, 0.09);
  border: 1px solid rgba(45, 181, 96, 0.25);
}

body.solucoes-page .sol-col-label {
  font-family: var(--sol-ff-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
body.solucoes-page .sol-col-neg .sol-col-label { color: rgba(255,255,255,0.28); }
body.solucoes-page .sol-col-pos .sol-col-label { color: var(--sol-accent-light); }

/* Ítens de comparação */
body.solucoes-page .sol-comp-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
body.solucoes-page .sol-comp-item:last-child { border-bottom: none; padding-bottom: 0; }
body.solucoes-page .sol-col-pos .sol-comp-item {
  border-bottom-color: rgba(45, 181, 96, 0.10);
}

body.solucoes-page .sol-comp-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.solucoes-page .sol-col-neg .sol-comp-icon {
  background: rgba(255,255,255,0.06);
}
body.solucoes-page .sol-col-pos .sol-comp-icon {
  background: rgba(45, 181, 96, 0.18);
}

body.solucoes-page .sol-comp-item p {
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}
body.solucoes-page .sol-col-neg .sol-comp-item p { color: rgba(255,255,255,0.52); }
body.solucoes-page .sol-col-pos .sol-comp-item p { color: rgba(255,255,255,0.80); }

/* Seta central */
body.solucoes-page .sol-contraste-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* CTA link no bloco escuro */
body.solucoes-page .sol-contraste-cta {
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

body.solucoes-page .sol-link-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--sol-ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sol-accent-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 217, 184, 0.25);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}
body.solucoes-page .sol-link-ghost:hover {
  color: var(--sol-accent);
  border-color: var(--sol-accent);
  text-decoration: none;
}


/* ============================================================
   § 7  CHECKLIST DE BENEFÍCIOS
   ============================================================ */

body.solucoes-page .sol-beneficios {
  background: var(--sol-bg-white);
  padding: var(--sol-space-md) 0;
}

body.solucoes-page .sol-beneficios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Lista de checks */
body.solucoes-page .sol-checklist {
  margin: 1.5rem 0 0;
}

body.solucoes-page .sol-check-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--sol-border);
}
body.solucoes-page .sol-check-item:first-child { border-top: 1px solid var(--sol-border); }

body.solucoes-page .sol-check-bullet {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--sol-brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

body.solucoes-page .sol-check-item p {
  font-size: 0.9375rem;
  color: var(--sol-text-body);
  line-height: 1.65;
  margin: 0;
}

/* Aside técnico verde-escuro */
body.solucoes-page .sol-tech-aside {
  background: var(--sol-brand-dark);
  border-radius: var(--sol-r-lg);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Detalhe de canto — "carimbo" */
body.solucoes-page .sol-tech-aside::before {
  content: '';
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(45, 181, 96, 0.12);
  pointer-events: none;
}
body.solucoes-page .sol-tech-aside::after {
  content: '';
  position: absolute;
  bottom: -2.75rem;
  right: -2.75rem;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(45, 181, 96, 0.07);
  pointer-events: none;
}

body.solucoes-page .sol-tech-label {
  font-family: var(--sol-ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sol-accent-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  opacity: 0.75;
}

body.solucoes-page .sol-tech-aside h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

body.solucoes-page .sol-tech-aside p {
  color: rgba(255,255,255,0.60);
  font-size: 0.875rem;
  line-height: 1.72;
  position: relative;
  z-index: 1;
}

/* Pills técnicas */
body.solucoes-page .sol-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

body.solucoes-page .sol-pill {
  font-family: var(--sol-ff-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sol-accent-light);
  background: rgba(45, 181, 96, 0.10);
  border: 1px solid rgba(45, 181, 96, 0.22);
  border-radius: var(--sol-r-pill);
  padding: 4px 11px;
}

/* Link "conhecer plataforma" */
body.solucoes-page .sol-link-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sol-ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sol-vertical-hue);
  text-decoration: none;
  border-bottom: 1px solid var(--sol-border);
  padding-bottom: 2px;
  margin-top: 1.25rem;
  transition: color 0.15s, border-color 0.15s;
  display: inline-flex;
}
body.solucoes-page .sol-link-inline:hover {
  color: var(--sol-brand-mid);
  border-color: currentColor;
  text-decoration: none;
}


/* ============================================================
   § 8  BARRAS DE IMPACTO (contexto visual)
   ============================================================ */

body.solucoes-page .sol-impacto {
  background: var(--sol-bg);
  padding: var(--sol-space-md) 0;
}
body.solucoes-page .sol-impacto.sol-dots-bg::before {
  opacity: 0.4;
}

body.solucoes-page .sol-impacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Coluna textual */
body.solucoes-page .sol-impacto-text p {
  font-size: 0.975rem;
  color: var(--sol-text-muted);
}

/* Disclaimer legal pequeno */
body.solucoes-page .sol-disclaimer {
  font-size: 0.78rem;
  color: var(--sol-text-faint);
  line-height: 1.6;
  padding-top: 1.25rem;
  border-top: 1px solid var(--sol-border);
  margin-top: 1.5rem;
}

/* Barras de impacto */
body.solucoes-page .sol-bars {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

body.solucoes-page .sol-bar {
  background: var(--sol-bg-white);
  border: 1px solid var(--sol-border);
  border-radius: var(--sol-r-md);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--sol-shadow-xs);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body.solucoes-page .sol-bar:hover {
  transform: translateX(4px);
  box-shadow: var(--sol-shadow-sm);
}

body.solucoes-page .sol-bar-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--sol-r-sm);
  background: var(--sol-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.solucoes-page .sol-bar-text h4 {
  font-size: 0.9rem;
  font-family: var(--sol-ff-sans);
  font-weight: 600;
  color: var(--sol-text-head);
  margin-bottom: 0.2rem;
}
body.solucoes-page .sol-bar-text p {
  font-size: 0.8rem;
  color: var(--sol-text-muted);
  margin: 0;
  line-height: 1.5;
}


/* ============================================================
   § 9  CTA FINAL
   ============================================================ */

body.solucoes-page .sol-cta {
  background: var(--sol-brand-deep);
  padding: clamp(3.5rem, 7vw, 6rem) 1.5rem;
}

body.solucoes-page .sol-cta .container {
  max-width: 740px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Eyebrow CTA */
body.solucoes-page .sol-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sol-ff-mono);
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sol-accent);
  margin-bottom: 1.25rem;
}
body.solucoes-page .sol-cta-eyebrow::before,
body.solucoes-page .sol-cta-eyebrow::after {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--sol-accent);
  opacity: 0.45;
}

body.solucoes-page .sol-cta h2 {
  color: #e8f0ea;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  max-width: 540px;
}
body.solucoes-page .sol-cta h2 em {
  font-style: normal;
  color: var(--sol-accent);
}

body.solucoes-page .sol-cta > .container > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.50);
  max-width: 480px;
  margin-bottom: 2.25rem;
}

/* Card interno da CTA */
body.solucoes-page .sol-cta-card {
  width: 100%;
  max-width: 560px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--sol-r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Lista dentro da CTA */
body.solucoes-page .sol-cta-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

body.solucoes-page .sol-cta-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.55;
}

body.solucoes-page .sol-cta-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(45, 181, 96, 0.16);
  border: 1px solid rgba(45, 181, 96, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

body.solucoes-page .sol-cta-sep {
  height: 1px;
  background: rgba(255,255,255,0.07);
}

/* Botão principal */
body.solucoes-page .sol-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--sol-accent);
  color: #071a11;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 0.9rem 1.75rem;
  border-radius: var(--sol-r-md);
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
  cursor: pointer;
  border: none;
}
body.solucoes-page .sol-btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #071a11;
  text-decoration: none;
}
body.solucoes-page .sol-btn-primary svg {
  transition: transform 0.15s;
}
body.solucoes-page .sol-btn-primary:hover svg {
  transform: translateX(3px);
}

/* Trust bar */
body.solucoes-page .sol-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

body.solucoes-page .sol-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--sol-ff-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

body.solucoes-page .sol-trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

/* Barra de credenciais técnicas */
body.solucoes-page .sol-cred-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 560px;
  margin-top: 1.75rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--sol-r-md);
  overflow: hidden;
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

body.solucoes-page .sol-cred {
  background: var(--sol-brand-deep);
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

body.solucoes-page .sol-cred-val {
  font-size: 1.1rem;
  font-weight: 500;
  color: #e8f0ea;
  letter-spacing: -0.02em;
  line-height: 1;
}
body.solucoes-page .sol-cred-val span {
  color: var(--sol-accent);
}

body.solucoes-page .sol-cred-label {
  font-family: var(--sol-ff-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}


/* ============================================================
   § 10  SELO DE CONFORMIDADE
   Elemento novo — bloco visual "carimbo" com bordas duplas
   ============================================================ */

body.solucoes-page .sol-selo-wrapper {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 1.5rem 2rem;
  background: var(--sol-bg-white);
  border: 1px solid var(--sol-border);
  border-radius: var(--sol-r-lg);
  box-shadow: var(--sol-shadow-xs);
  position: relative;
  overflow: hidden;
}

/* Faixa diagonal decorativa */
body.solucoes-page .sol-selo-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  bottom: 0;
  background: linear-gradient(
    180deg,
    var(--sol-brand-mid),
    var(--sol-accent)
  );
  border-radius: var(--sol-r-lg) 0 0 var(--sol-r-lg);
}

body.solucoes-page .sol-selo-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--sol-border);
  background: var(--sol-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.solucoes-page .sol-selo-text {
  flex: 1;
}
body.solucoes-page .sol-selo-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--sol-text-head);
  margin-bottom: 0.2rem;
}
body.solucoes-page .sol-selo-text span {
  font-size: 0.8rem;
  color: var(--sol-text-faint);
}


/* ============================================================
   § 11  ANIMAÇÕES & MOTION
   ============================================================ */

@keyframes solFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes solFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes solSlideRight {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Classes de animação utilitárias */
body.solucoes-page .sol-fade-up {
  animation: solFadeUp 0.55s ease both;
}
body.solucoes-page .sol-fade-up.d1 { animation-delay: 0.08s; }
body.solucoes-page .sol-fade-up.d2 { animation-delay: 0.16s; }
body.solucoes-page .sol-fade-up.d3 { animation-delay: 0.24s; }
body.solucoes-page .sol-fade-up.d4 { animation-delay: 0.32s; }

body.solucoes-page .sol-slide-right {
  animation: solSlideRight 0.5s ease both;
}

/* ── CONTEÚDO RELACIONADO ────────────────────────────────── */
body.solucoes-page .sol-related {
  background: var(--sol-bg);
  border-top: 1px solid var(--sol-border);
}

body.solucoes-page .sol-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 1.5rem;
}

body.solucoes-page .sol-related-card {
  background: var(--sol-bg-white);
  border: 1px solid var(--sol-border);
  border-radius: var(--sol-r-md);
  padding: 1.6rem 1.5rem 1.5rem;
  box-shadow: var(--sol-shadow-xs);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.solucoes-page .sol-related-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sol-brand-mid), var(--sol-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

body.solucoes-page .sol-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sol-shadow-md);
}
body.solucoes-page .sol-related-card:hover::before {
  transform: scaleX(1);
}

body.solucoes-page .sol-related-card h3 {
  font-size: 0.95rem;
  color: var(--sol-text-head);
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

body.solucoes-page .sol-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--sol-ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sol-vertical-hue);
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--sol-border);
  transition: opacity 0.15s;
}
body.solucoes-page .sol-related-card:hover .sol-related-link { opacity: 0.65; }

@media (max-width: 640px) {
  body.solucoes-page .sol-related-grid {
    grid-template-columns: 1fr;
  }
}

/* Reveal via IntersectionObserver (JS opcional) */
body.solucoes-page .sol-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.solucoes-page .sol-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   § 12  RESPONSIVO
   ============================================================ */

@media (max-width: 860px) {
  body.solucoes-page .sol-intro-grid,
  body.solucoes-page .sol-beneficios-grid,
  body.solucoes-page .sol-impacto-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  body.solucoes-page .sol-lei-grid {
    grid-template-columns: 1fr;
  }

  body.solucoes-page .sol-contraste-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  body.solucoes-page .sol-contraste-arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }

  body.solucoes-page .sol-cred-bar {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  body.solucoes-page .sol-hero-badges {
    gap: 0.75rem;
  }

  body.solucoes-page .sol-hero h1 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  body.solucoes-page .sol-selo-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  body.solucoes-page .sol-selo-wrapper::before {
    top: 0; left: 0; right: 0; bottom: auto;
    width: auto; height: 5px;
    border-radius: var(--sol-r-lg) var(--sol-r-lg) 0 0;
  }
}

@media (max-width: 540px) {
  body.solucoes-page .sol-trust {
    flex-direction: column;
    gap: 6px;
  }

  body.solucoes-page .sol-trust-dot {
    display: none;
  }

  body.solucoes-page .sol-cta-card {
    padding: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.solucoes-page .sol-fade-up,
  body.solucoes-page .sol-slide-right,
  body.solucoes-page .sol-reveal,
  body.solucoes-page .sol-check-item,
  body.solucoes-page .sol-lei-card,
  body.solucoes-page .sol-bar,
  body.solucoes-page .sol-btn-primary {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
