/* =====================================================
   MENSUM — Site Institucional
   Paleta: Teal #0f9599  ·  Navy marca #033f63  ·  Ink (superfície escura) #01283F
   ===================================================== */

/* ── 1. Variáveis & Reset ──────────────────────────── */
:root {
  --brand:       #0f9599;
  --brand-dark:  #0d8286;
  --brand-deep:  #096163;
  --brand-light: #d0f0f1;
  --brand-faint: #f0fbfb;
  --navy:        #01283F; /* ink — superfície escura (contraste p/ a logo) */
  --navy-brand:  #033f63; /* navy da marca — acentos sobre claro */
  --navy-light:  #0e4569;
  --navy-mid:    #064269;
  --white:       #ffffff;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-500:    #6b7280;
  --gray-700:    #374151;
  --gray-900:    #111827;
  --green:       #10b981;
  --amber:       #f59e0b;
  --red:         #ef4444;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14);
  --shadow-xl:  0 24px 60px rgba(0,0,0,.20);

  --ease-out:   cubic-bezier(.25,.1,.25,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── 2. Layout ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}
.section--white { background: var(--white); }
.section--gray  { background: var(--gray-50); }
.section--light { background: var(--white); }
.section--navy  { background: var(--navy); }
.section--teal  {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
}
.section--notify {
  background: linear-gradient(135deg, var(--navy) 0%, var(--brand-deep) 60%, var(--brand) 100%);
}

/* ── 3. Botões ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s var(--ease-out);
  white-space: nowrap;
}
.btn--large { padding: 15px 32px; font-size: 1rem; }

.btn--primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.btn--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,149,153,.35);
}

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}

.btn--white {
  background: var(--white);
  color: var(--brand-deep);
  border-color: var(--white);
  font-weight: 700;
}
.btn--white:hover {
  background: var(--brand-faint);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

/* ── 4. Seção: header comum ─────────────────────────── */
.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section__header--light { color: var(--white); }

.section__tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: var(--brand-light);
  color: var(--brand-deep);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section__tag--teal {
  background: rgba(15,149,153,.25);
  color: rgba(255,255,255,.9);
}
.section__tag--white {
  background: rgba(255,255,255,.2);
  color: var(--white);
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 20px;
}
.section__header--light .section__title { color: var(--white); }

.section__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-500);
}
.section__subtitle--light { color: rgba(255,255,255,.75); }

/* ── 5. Navbar ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: padding .35s var(--ease-out), background .35s var(--ease-out),
              box-shadow .35s var(--ease-out);
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(1,40,63,.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08), var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__logo { flex-shrink: 0; }
.navbar__logo img {
  height: 43px;
  transition: opacity .2s;
  filter: drop-shadow(0 0 5px rgba(255,255,255,.6));
}
.navbar__logo .logo-dark { display: none; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.navbar__links a {
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color .2s, background .2s;
}
.navbar__links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.navbar__cta { margin-left: 8px; }

.navbar__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.navbar__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.navbar__mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__mobile-toggle.open span:nth-child(2) { opacity: 0; }
.navbar__mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(1,40,63,.97);
  backdrop-filter: blur(16px);
  padding: 16px 24px 24px;
}
.navbar__mobile-menu.open { display: block; }
.navbar__mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.navbar__mobile-menu a {
  display: block;
  padding: 10px 14px;
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: background .2s;
}
.navbar__mobile-menu a:hover { background: rgba(255,255,255,.1); }
.navbar__mobile-menu .btn {
  display: inline-flex;
  margin-top: 12px;
}

/* ── 6. Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Animated gradient mesh */
.hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: rgba(15,149,153,.35);
  top: -150px; right: -100px;
  animation: orb1 12s ease-in-out infinite alternate;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: rgba(15,149,153,.2);
  bottom: -50px; left: 5%;
  animation: orb2 16s ease-in-out infinite alternate;
}
.hero__orb--3 {
  width: 250px; height: 250px;
  background: rgba(43,178,181,.25);
  top: 40%; right: 25%;
  animation: orb3 9s ease-in-out infinite alternate;
}
@keyframes orb1 { from { transform: translate(0,0) scale(1); } to { transform: translate(-60px,40px) scale(1.1); } }
@keyframes orb2 { from { transform: translate(0,0) scale(1); } to { transform: translate(40px,-60px) scale(1.08); } }
@keyframes orb3 { from { transform: translate(0,0); } to { transform: translate(-40px,30px); } }

/* Grid dot pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 140px 24px 80px;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  background: rgba(15,149,153,.2);
  border: 1px solid rgba(15,149,153,.4);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 36px;
  animation: badge-in .8s var(--ease-out) both;
  transition: background .2s, border-color .2s;
}
a.hero__badge:hover {
  background: rgba(15,149,153,.35);
  border-color: rgba(15,149,153,.7);
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(15,149,153,.7); }
  50%      { box-shadow: 0 0 0 6px rgba(15,149,153,0); }
}

.hero__eyebrow {
  font-size: clamp(.72rem, 1.2vw, .82rem);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #4dd8da;
  margin-bottom: 18px;
  animation: fade-up .9s var(--ease-out) .1s both;
}

.hero__tagline {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 600;
  font-style: italic;
  color: rgba(255,255,255,.82);
  margin: -28px 0 52px;
  animation: fade-up .9s var(--ease-out) .38s both;
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 24px;
  animation: fade-up .9s var(--ease-out) .15s both;
}
.hero__title--accent {
  background: linear-gradient(135deg, #4dd8da 0%, var(--brand) 50%, #2bb2b5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255,255,255,.68);
  margin-bottom: 52px;
  animation: fade-up .9s var(--ease-out) .3s both;
}

/* Countdown */
.countdown {
  margin-bottom: 48px;
  animation: fade-up .9s var(--ease-out) .45s both;
}
.countdown__label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.countdown__blocks {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 80px;
  padding: 18px 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}
.countdown__num {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--white);
  line-height: 1;
  font-family: 'Inter', monospace;
}
.countdown__unit {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.countdown__sep {
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255,255,255,.25);
  margin-bottom: 16px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
  animation: fade-up .9s var(--ease-out) .6s both;
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  color: rgba(255,255,255,.45);
  font-size: .8rem;
  font-weight: 500;
  animation: fade-up .9s var(--ease-out) .75s both;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.3);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fade-in 1s ease 1.2s both;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.3));
  animation: scroll-line 1.5s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── 7. Pilares ────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.pillar {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pillar__icon {
  width: 48px; height: 48px;
  background: var(--brand-faint);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background .2s;
}
.pillar:hover .pillar__icon { background: var(--brand-light); }
.pillar__icon svg { width: 24px; height: 24px; stroke: var(--brand); }
.pillar h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.pillar p { font-size: .9rem; line-height: 1.6; color: var(--gray-500); }

/* Stats */
.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 40px;
}
.stat__num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
}
.stat__label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-400);
  text-align: center;
  white-space: nowrap;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* ── 8. Módulos ────────────────────────────────────── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.module-card {
  position: relative;
  padding: 28px 22px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  cursor: default;
  transition: transform .3s var(--ease-out),
              border-color .3s,
              box-shadow .3s var(--ease-out);
  overflow: hidden;
}
.module-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-faint), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.module-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand);
  box-shadow: 0 16px 40px rgba(15,149,153,.18);
}
.module-card:hover::before { opacity: 1; }

.module-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  background: var(--brand-light);
  color: var(--brand-deep);
  border-radius: var(--radius-sm);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  margin-bottom: 14px;
  transition: background .2s, color .2s;
}
.module-card:hover .module-card__num {
  background: var(--brand);
  color: var(--white);
}

.module-card__icon {
  width: 40px; height: 40px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: background .2s;
}
.module-card:hover .module-card__icon { background: var(--brand-light); }
.module-card__icon svg {
  width: 20px; height: 20px;
  stroke: var(--gray-500);
  transition: stroke .2s;
}
.module-card:hover .module-card__icon svg { stroke: var(--brand); }

.module-card h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}
.module-card p {
  font-size: .8rem;
  line-height: 1.55;
  color: var(--gray-400);
}

/* ── 9. Feature Rows ───────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }

.feature-row__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--brand-light);
  color: var(--brand-deep);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  margin-bottom: 16px;
}

.feature-row__content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 20px;
}
.feature-row__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  line-height: 1.55;
  color: var(--gray-700);
}
.feature-list li span {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  margin-top: 1px;
}

/* ── 10. Mock Screens ──────────────────────────────── */
.feature-row__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-screen {
  width: 100%;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 72px rgba(3,63,99,.18), 0 0 0 1px rgba(3,63,99,.08);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
  transition: transform .4s var(--ease-out);
}
.feature-row--reverse .mock-screen {
  transform: perspective(1000px) rotateY(3deg) rotateX(2deg);
}
.mock-screen:hover,
.feature-row--reverse .mock-screen:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mock-screen__header {
  background: var(--navy);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mock-screen__dots {
  display: flex; gap: 5px;
}
.mock-screen__dots div {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.mock-screen__dots div:nth-child(1) { background: #ff5f57; }
.mock-screen__dots div:nth-child(2) { background: #febc2e; }
.mock-screen__dots div:nth-child(3) { background: #28c840; }
.mock-screen__title {
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  flex: 1;
  text-align: center;
  margin-right: 50px;
}

.mock-screen__body { padding: 20px; }

.mock-kpi-row {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.mock-kpi {
  flex: 1;
  padding: 12px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  text-align: center;
}
.mock-kpi__num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 4px;
}
.mock-kpi__label {
  font-size: .65rem;
  color: var(--gray-400);
  font-weight: 500;
}

.mock-table { background: var(--white); border-radius: var(--radius-md); overflow: hidden; }
.mock-table__header,
.mock-table__row {
  display: grid;
  grid-template-columns: 90px 1fr 80px 90px;
  gap: 8px;
  padding: 8px 12px;
  font-size: .72rem;
}
.mock-table__header {
  background: var(--gray-50);
  color: var(--gray-400);
  font-weight: 600;
  border-bottom: 1px solid var(--gray-100);
}
.mock-table__row {
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-50);
  align-items: center;
}
.mock-table__row--muted { opacity: .7; }
.mock-cell--id { font-weight: 700; color: var(--brand-deep); }

.mock-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: .65rem;
  font-weight: 700;
}
.mock-badge--green { background: #d1fae5; color: #065f46; }
.mock-badge--yellow { background: #fef3c7; color: #92400e; }
.mock-badge--red    { background: #fee2e2; color: #991b1b; }

.mock-sync {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: .7rem;
  color: var(--gray-400);
}
.mock-sync__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,.6); }
  50%      { box-shadow: 0 0 0 5px rgba(16,185,129,0); }
}

/* Assinaturas mock */
.mock-envelope-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}
.mock-signers { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.mock-signer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
}
.mock-signer--done { background: #f0fdf4; border-color: #bbf7d0; }
.mock-signer--pending { background: var(--gray-50); }
.mock-signer__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.mock-signer--pending .mock-signer__avatar { background: var(--gray-300); }
.mock-signer__name { font-size: .78rem; font-weight: 600; color: var(--gray-900); }
.mock-signer__status { font-size: .65rem; color: var(--gray-400); margin-top: 1px; }
.mock-signer__check { margin-left: auto; color: var(--green); font-size: .9rem; }
.mock-signer__clock { margin-left: auto; font-size: .85rem; }
.mock-progress { margin-top: 4px; }
.mock-progress__bar {
  height: 5px;
  background: var(--brand);
  border-radius: var(--radius-full);
  margin-bottom: 6px;
  position: relative;
  background: linear-gradient(to right, var(--brand), var(--brand-dark));
}
.mock-progress__label { font-size: .7rem; color: var(--gray-400); font-weight: 500; }

/* Kanban mock */
.mock-kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mock-kanban-col {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 10px;
}
.mock-kanban-col__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gray-500);
  margin-bottom: 8px;
  padding: 0 4px;
}
.mock-kanban-col__count {
  background: var(--gray-200);
  color: var(--gray-600);
  border-radius: var(--radius-full);
  padding: 1px 6px;
  font-size: .65rem;
}
.mock-kanban-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 10px;
  margin-bottom: 6px;
  font-size: .7rem;
}
.mock-kanban-card:last-child { margin-bottom: 0; }
.mock-kanban-card__temp { color: var(--gray-400); margin-bottom: 4px; }
.mock-kanban-card__title { font-weight: 700; color: var(--gray-800); margin-bottom: 3px; }
.mock-kanban-card__client { color: var(--gray-400); margin-bottom: 4px; }
.mock-kanban-card__value { font-weight: 700; color: var(--brand-deep); }

/* ── 11. Portais ───────────────────────────────────── */
.portals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portal-card {
  padding: 36px 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  transition: transform .3s var(--ease-out), background .3s;
}
.portal-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.1);
}
.portal-card--featured {
  background: rgba(15,149,153,.15);
  border-color: rgba(15,149,153,.4);
}
.portal-card__icon {
  width: 52px; height: 52px;
  background: rgba(15,149,153,.2);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.portal-card__icon svg { width: 26px; height: 26px; stroke: var(--brand); }
.portal-card__tag {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
  margin-bottom: 12px;
  font-family: 'Courier New', monospace;
}
.portal-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.portal-card p {
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
  margin-bottom: 18px;
}
.portal-card ul { display: flex; flex-direction: column; gap: 6px; }
.portal-card ul li {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── 12. IGC Section ───────────────────────────────── */
.igc-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.igc-section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.igc-section__content p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
}
.igc-levels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.igc-level {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 600;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.2);
}
.igc-level span { font-weight: 800; margin-right: 4px; }
.igc-level--excellent { background: rgba(16,185,129,.25); border-color: rgba(16,185,129,.5); color: #6ee7b7; }
.igc-level--good      { background: rgba(15,149,153,.25); border-color: rgba(15,149,153,.5); color: #67e8f9; }
.igc-level--regular   { background: rgba(245,158,11,.25); border-color: rgba(245,158,11,.5); color: #fcd34d; }
.igc-level--critical  { background: rgba(239,68,68,.25);  border-color: rgba(239,68,68,.5);  color: #fca5a5; }

.igc-gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.igc-gauge__circle {
  position: relative;
  width: 180px; height: 180px;
  display: flex; align-items: center; justify-content: center;
}
.igc-gauge__circle svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.igc-gauge__circle circle:last-child { transition: stroke-dashoffset 1.5s var(--ease-out); }
.igc-gauge__num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  position: relative;
}
.igc-gauge__label {
  position: absolute;
  bottom: 28px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.igc-sub-indices { width: 100%; display: flex; flex-direction: column; gap: 10px; }
.igc-sub { }
.igc-sub__label {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 5px;
}
.igc-sub__label strong { color: var(--white); }
.igc-sub__bar-track {
  height: 6px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.igc-sub__bar {
  height: 6px;
  background: rgba(255,255,255,.6);
  border-radius: var(--radius-full);
  transition: width 1.5s var(--ease-out);
  width: 0;
}
.igc-sub.animated .igc-sub__bar { width: var(--target-width, 0%); }

/* ── 13. Diferenciais ──────────────────────────────── */
.differentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
}
.diff-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-light);
  box-shadow: 0 12px 36px rgba(15,149,153,.12);
}
.diff-card__icon {
  width: 44px; height: 44px;
  background: var(--brand-faint);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background .2s;
}
.diff-card:hover .diff-card__icon { background: var(--brand-light); }
.diff-card__icon svg { width: 22px; height: 22px; stroke: var(--brand); }
.diff-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.diff-card p { font-size: .88rem; line-height: 1.65; color: var(--gray-500); }

/* ── 13b. Personas ─────────────────────────────────── */
.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.persona-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
}
.persona-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-light);
  box-shadow: 0 12px 36px rgba(15,149,153,.12);
}
.persona-card__icon {
  width: 44px; height: 44px;
  background: var(--brand-faint);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background .2s;
}
.persona-card:hover .persona-card__icon { background: var(--brand-light); }
.persona-card__icon svg { width: 22px; height: 22px; stroke: var(--brand); }
.persona-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.persona-card__lead {
  font-size: .85rem;
  line-height: 1.5;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.persona-card ul { display: flex; flex-direction: column; gap: 8px; }
.persona-card ul li {
  font-size: .82rem;
  line-height: 1.4;
  color: var(--gray-500);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.persona-card ul li span {
  flex-shrink: 0;
  color: var(--brand);
  font-weight: 700;
}

/* ── 14. Notify ────────────────────────────────────── */
.notify {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.notify__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 28px;
}
.notify__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-green 2s infinite;
}
.notify__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.notify__subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  margin-bottom: 40px;
}

.notify-form__group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}
.notify-form__input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
}
.notify-form__input::placeholder { color: rgba(255,255,255,.4); }
.notify-form__input:focus {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.18);
}

.notify__privacy {
  margin-top: 16px;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.notify__privacy a { color: rgba(255,255,255,.6); text-decoration: underline; }

.notify-success {
  display: none;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(16,185,129,.2);
  border: 1px solid rgba(16,185,129,.4);
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  line-height: 1.6;
  text-align: left;
  margin-top: 16px;
}
.notify-success.show { display: flex; }
.notify-success__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(16,185,129,.3);
  color: #6ee7b7;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── 15. About Mini ────────────────────────────────── */
.about-mini {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.about-mini__content .section__tag { margin-bottom: 16px; }
.about-mini__content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-mini__content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.tech-stack span {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: .78rem;
  font-weight: 600;
  border: 1px solid var(--gray-200);
  transition: background .2s, color .2s;
}
.tech-stack span:hover { background: var(--brand-light); color: var(--brand-deep); }

.about-mini__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  min-width: 220px;
}
.about-mini__logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(15,149,153,.2));
}
.about-mini__tagline {
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-400);
  text-align: center;
  line-height: 1.5;
  border-left: 3px solid var(--brand);
  padding-left: 14px;
}

/* ── 16. Footer ────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 60px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
}
.footer__logo {
  height: 48px;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 5px rgba(255,255,255,.6));
}
.footer__slogan {
  font-size: .74rem !important;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4dd8da !important;
  margin-bottom: 14px !important;
}
.footer__brand p {
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.45);
  margin-bottom: 24px;
}
.footer__copy {
  font-size: .78rem !important;
  color: rgba(255,255,255,.25) !important;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer__col ul li a:hover { color: var(--white); }

.footer__launch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(15,149,153,.15);
  border: 1px solid rgba(15,149,153,.3);
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
}
.footer__launch-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 2s infinite;
}

/* ── 17. Animações de Scroll ────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity .8s var(--ease-out) var(--delay, 0ms),
    transform .8s var(--ease-out) var(--delay, 0ms);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes badge-in {
  from { opacity: 0; transform: scale(.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── 18. Responsive ─────────────────────────────────── */
@media (max-width: 1100px) {
  .modules-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row--reverse { direction: ltr; }
  .portals { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .igc-section { grid-template-columns: 1fr; gap: 48px; }
  .differentials { grid-template-columns: repeat(2, 1fr); }
  .personas-grid { grid-template-columns: repeat(2, 1fr); }
  .about-mini { grid-template-columns: 1fr; gap: 40px; }
  .about-mini__visual { flex-direction: row; min-width: auto; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 0 24px; }
}

@media (max-width: 768px) {
  .navbar__links,
  .navbar__cta { display: none; }
  .navbar__mobile-toggle { display: flex; }
  .hero__inner { padding: 120px 24px 60px; }
  .hero__subtitle br { display: none; }
  .countdown__blocks { gap: 8px; }
  .countdown__block { min-width: 64px; padding: 14px 12px; }
  .countdown__num { font-size: 1.6rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .hero__trust { gap: 12px; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .differentials { grid-template-columns: 1fr; }
  .personas-grid { grid-template-columns: 1fr; }
  .stat__divider { display: none; }
  .stats { gap: 24px; }
  .stat { padding: 0; }
}

@media (max-width: 480px) {
  .modules-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr; }
  .igc-levels { flex-direction: column; }
  .mock-kanban { grid-template-columns: 1fr; }
  .countdown__sep { display: none; }
  .countdown__blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ── 19. Páginas Legais (Privacidade / Termos) ──────── */

/* Navbar sempre sólida — páginas legais não têm hero escuro atrás */
.navbar--solid {
  background: rgba(1,40,63,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08), var(--shadow-md);
}

.legal {
  background: var(--gray-50);
}

/* Cabeçalho da página legal */
.legal__hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--brand-deep) 100%);
  color: var(--white);
  padding: 128px 0 56px;
}
.legal__eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #4dd8da;
  margin-bottom: 14px;
}
.legal__title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.legal__lead {
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255,255,255,.7);
  max-width: 640px;
}
.legal__updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}

/* Corpo */
.legal__body {
  padding: 64px 0 88px;
}
.legal__grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}

/* Índice lateral (sticky) */
.legal__toc {
  position: sticky;
  top: 96px;
}
.legal__toc h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}
.legal__toc ul { display: flex; flex-direction: column; gap: 2px; }
.legal__toc a {
  display: block;
  padding: 7px 12px;
  border-radius: var(--radius-md);
  font-size: .84rem;
  line-height: 1.4;
  color: var(--gray-500);
  border-left: 2px solid transparent;
  transition: color .2s, background .2s, border-color .2s;
}
.legal__toc a:hover {
  color: var(--navy-brand);
  background: var(--brand-faint);
  border-left-color: var(--brand);
}

/* Conteúdo / prosa */
.legal__content {
  max-width: 760px;
}
.legal__section {
  scroll-margin-top: 96px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.legal__section h2 {
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--navy-brand);
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.legal__section h2 .legal__num {
  color: var(--brand);
  margin-right: 8px;
}
.legal__section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 22px 0 10px;
}
.legal__section p {
  font-size: .94rem;
  line-height: 1.72;
  color: var(--gray-700);
  margin-bottom: 14px;
}
.legal__section p:last-child { margin-bottom: 0; }
.legal__section ul,
.legal__section ol {
  margin: 0 0 16px 0;
  padding-left: 4px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.legal__section ul li,
.legal__section ol li {
  position: relative;
  padding-left: 26px;
  font-size: .94rem;
  line-height: 1.65;
  color: var(--gray-700);
}
.legal__section ul li::before {
  content: '';
  position: absolute;
  left: 6px; top: 9px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
}
.legal__section ol { counter-reset: legal-ol; }
.legal__section ol li { counter-increment: legal-ol; }
.legal__section ol li::before {
  content: counter(legal-ol);
  position: absolute;
  left: 0; top: 1px;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand-deep);
  font-size: .68rem;
  font-weight: 700;
}
.legal__section strong { color: var(--gray-900); font-weight: 600; }
.legal__section a {
  color: var(--brand-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(15,149,153,.3);
  transition: border-color .2s;
}
.legal__section a:hover { border-bottom-color: var(--brand); }

/* Caixa de destaque (aviso / DPO) */
.legal__callout {
  margin-top: 8px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: var(--brand-faint);
  border: 1px solid var(--brand-light);
}
.legal__callout p { color: var(--brand-deep); margin-bottom: 6px; }
.legal__callout p:last-child { margin-bottom: 0; }
.legal__callout strong { color: var(--brand-deep); }

/* Tabela de dados */
.legal__table-wrap { overflow-x: auto; margin-bottom: 16px; }
.legal__table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  min-width: 480px;
}
.legal__table th,
.legal__table td {
  text-align: left;
  padding: 11px 14px;
  border-bottom: 1px solid var(--gray-200);
  line-height: 1.5;
  vertical-align: top;
}
.legal__table th {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gray-500);
  background: var(--gray-50);
}
.legal__table td { color: var(--gray-700); }
.legal__table tr:last-child td { border-bottom: none; }

@media (max-width: 900px) {
  .legal__grid { grid-template-columns: 1fr; gap: 24px; }
  .legal__toc { display: none; }
}
@media (max-width: 560px) {
  .legal__hero { padding: 108px 0 44px; }
  .legal__body { padding: 40px 0 64px; }
  .legal__section { padding: 24px 22px; }
}

/* ── 20. Páginas de Solução (/solucoes/*) ───────────── */
.sol-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--brand-deep) 100%);
  color: var(--white);
  padding: 150px 0 92px;
  position: relative;
  overflow: hidden;
}
.sol-hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -140px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(15,149,153,.35) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.sol-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
}
.sol-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 22px;
}
.sol-breadcrumb a { color: rgba(255,255,255,.72); transition: color .2s; }
.sol-breadcrumb a:hover { color: var(--white); }
.sol-breadcrumb span { opacity: .45; }
.sol-eyebrow {
  display: inline-block;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #4dd8da; margin-bottom: 16px;
}
.sol-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -.025em; margin-bottom: 20px;
}
.sol-hero h1 em { color: #4dd8da; font-style: normal; }
.sol-hero__lead {
  font-size: 1.08rem; line-height: 1.62;
  color: rgba(255,255,255,.72); max-width: 540px;
}
.sol-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.sol-hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.sol-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 13px; border-radius: var(--radius-full);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.8);
}

/* Mock visual do hero */
.sol-mock {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 18px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-xl);
}
.sol-mock__bar {
  display: flex; align-items: center; gap: 10px;
  padding: 0 4px 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 12px;
}
.sol-mock__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.25); }
.sol-mock__title { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.6); margin-left: 4px; }
.sol-mock__row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center; gap: 12px;
  padding: 11px 8px;
  border-radius: var(--radius-md);
  transition: background .2s;
}
.sol-mock__row:hover { background: rgba(255,255,255,.05); }
.sol-mock__ico {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(15,149,153,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
}
.sol-mock__label { font-size: .82rem; color: rgba(255,255,255,.82); }
.sol-mock__meta { font-size: .68rem; color: rgba(255,255,255,.4); }
.sol-mock__tag {
  font-size: .64rem; font-weight: 700; letter-spacing: .04em;
  padding: 3px 9px; border-radius: var(--radius-full);
  background: rgba(16,185,129,.18); color: #34d399;
}
.sol-mock__tag--amber { background: rgba(245,158,11,.18); color: #fbbf24; }

/* Seções genéricas de solução */
.sol-section { padding: 92px 0; }
.sol-section--gray { background: var(--gray-50); }
.sol-section--white { background: var(--white); }
.sol-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.sol-head--left { text-align: left; margin-left: 0; }
.sol-head__eyebrow {
  display: inline-block;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 12px;
}
.sol-head__title {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -.02em; color: var(--navy-brand);
  margin-bottom: 14px;
}
.sol-head__sub { font-size: 1.02rem; line-height: 1.6; color: var(--gray-500); }

/* Grid de recursos */
.sol-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sol-feature {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), border-color .25s;
}
.sol-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-light);
}
.sol-feature__icon {
  width: 46px; height: 46px; border-radius: var(--radius-md);
  background: var(--brand-faint);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 18px;
}
.sol-feature h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--gray-900); margin-bottom: 9px;
}
.sol-feature p { font-size: .92rem; line-height: 1.62; color: var(--gray-500); }

/* Passos (como funciona) */
.sol-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: sol-step;
}
.sol-step {
  position: relative;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  counter-increment: sol-step;
}
.sol-step::before {
  content: counter(sol-step);
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: var(--white); font-weight: 800; font-size: .9rem;
  margin-bottom: 16px;
}
.sol-step h3 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.sol-step p { font-size: .88rem; line-height: 1.6; color: var(--gray-500); }

/* Bloco dividido (persona / dor) */
.sol-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.sol-split__title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800; line-height: 1.18;
  letter-spacing: -.02em; color: var(--navy-brand);
  margin-bottom: 16px;
}
.sol-split__lead { font-size: 1rem; line-height: 1.65; color: var(--gray-600); margin-bottom: 24px; }
.sol-list { display: flex; flex-direction: column; gap: 14px; }
.sol-list li {
  position: relative; padding-left: 34px;
  font-size: .96rem; line-height: 1.55; color: var(--gray-700);
}
.sol-list li strong { color: var(--gray-900); }
.sol-list li::before {
  content: '✓';
  position: absolute; left: 0; top: -1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-light); color: var(--brand-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800;
}
.sol-panel {
  background: linear-gradient(135deg, var(--navy) 0%, var(--brand-deep) 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: var(--white);
}
.sol-panel h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 18px; color: #4dd8da; }
.sol-panel__item { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.sol-panel__item:last-child { border-bottom: none; }
.sol-panel__item strong { display: block; font-size: .95rem; margin-bottom: 3px; }
.sol-panel__item span { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.5; }

/* FAQ (nativo, sem JS) */
.sol-faq { max-width: 800px; margin: 0 auto; }
.sol-faq details {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.sol-faq details[open] { border-color: var(--brand-light); box-shadow: var(--shadow-sm); }
.sol-faq summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px;
  font-size: .98rem; font-weight: 600; color: var(--gray-900);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sol-faq summary::-webkit-details-marker { display: none; }
.sol-faq summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.3rem; font-weight: 400; color: var(--brand);
  transition: transform .25s var(--ease-out);
}
.sol-faq details[open] summary::after { transform: rotate(45deg); }
.sol-faq__a {
  padding: 0 24px 22px;
  font-size: .94rem; line-height: 1.72; color: var(--gray-600);
}
.sol-faq__a p { margin-bottom: 12px; }
.sol-faq__a p:last-child { margin-bottom: 0; }

/* CTA final */
.sol-cta {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: var(--white);
  text-align: center;
  padding: 84px 0;
}
.sol-cta h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.15;
  margin-bottom: 16px;
}
.sol-cta p {
  font-size: 1.05rem; color: rgba(255,255,255,.82);
  max-width: 560px; margin: 0 auto 32px; line-height: 1.6;
}
.sol-cta .btn--primary {
  background: var(--white); color: var(--brand-deep); border-color: var(--white);
}
.sol-cta .btn--primary:hover {
  background: var(--gray-100); border-color: var(--gray-100);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

/* Cross-links entre soluções */
.sol-crosslinks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sol-crosslink {
  display: block;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.sol-crosslink:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-light); }
.sol-crosslink strong { display: block; font-size: .98rem; color: var(--navy-brand); margin-bottom: 5px; }
.sol-crosslink span { font-size: .85rem; color: var(--gray-500); line-height: 1.5; }
.sol-crosslink em { font-style: normal; color: var(--brand); font-weight: 600; }

/* Bloco de links de solução na home */
.sol-home-links { margin-top: 56px; scroll-margin-top: 96px; }
.sol-home-links__label {
  text-align: center;
  font-size: .95rem; font-weight: 700;
  color: var(--navy-brand);
  margin-bottom: 22px;
}

@media (max-width: 900px) {
  .sol-hero { padding: 128px 0 72px; }
  .sol-hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .sol-features { grid-template-columns: repeat(2, 1fr); }
  .sol-steps { grid-template-columns: repeat(2, 1fr); }
  .sol-split { grid-template-columns: 1fr; gap: 40px; }
  .sol-crosslinks { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .sol-section { padding: 64px 0; }
  .sol-features { grid-template-columns: 1fr; }
  .sol-steps { grid-template-columns: 1fr; }
  .sol-hero__actions .btn { width: 100%; justify-content: center; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand); }
