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

:root {
  --navy: #020A24;
  --yellow: #FFC400;
  --yellow2: #FFD21A;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-500: #6c757d;
  --gray-700: #343a40;
  --green: #10B981;
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; color: var(--gray-700); background: #fff; line-height: 1.6; overflow-x: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ══════════════════════════════════════════════
   HEADER ÚNICO
══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-visible {
  background: #fff;
  border-bottom-color: var(--gray-200);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.sh__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}

/* Logo — dois estados */
.sh__logo { display: flex; align-items: center; text-decoration: none; margin-left: 14px; }
.sh__logo-img { height: 130px; width: auto; display: block; }
.sh__logo-img--dark { display: none; }
.sh__logo-img--light { display: block; }
.site-header.is-visible .sh__logo-img--dark { display: block; }
.site-header.is-visible .sh__logo-img--light { display: none; }

/* Nav */
.sh__nav { display: flex; align-items: center; gap: 28px; position: absolute; left: 50%; transform: translateX(-50%); }
.sh__nav a { text-decoration: none; color: rgba(255,255,255,0.88); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.sh__nav a:hover { color: #fff; }
.site-header.is-visible .sh__nav a { color: var(--gray-700); }
.site-header.is-visible .sh__nav a:hover { color: var(--navy); }

/* Área do Cliente — destaque no nav */
.sh__nav a.sh__nav--portal {
  color: var(--yellow) !important;
  font-weight: 600 !important;
  border: 1px solid rgba(255,196,0,0.28);
  border-radius: 6px;
  padding: 4px 10px;
  margin-left: 4px;
}
.sh__nav a.sh__nav--portal:hover { color: #fff !important; border-color: rgba(255,196,0,0.5); }
.site-header.is-visible .sh__nav a.sh__nav--portal {
  color: var(--navy) !important;
  border-color: rgba(2,10,36,0.18);
  background: rgba(2,10,36,0.04);
}
.site-header.is-visible .sh__nav a.sh__nav--portal:hover { background: rgba(2,10,36,0.08); }

/* CTA */
.sh__cta {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; padding: 0 18px;
  background: linear-gradient(180deg, var(--yellow2) 0%, var(--yellow) 100%);
  color: #020202; font-weight: 800; font-size: 12px;
  border-radius: 7px; text-decoration: none; white-space: nowrap;
  letter-spacing: 0.04em; border: none; cursor: pointer;
  margin-left: auto;
}

/* Burger */
.sh__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.sh__burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }
.site-header.is-visible .sh__burger span { background: var(--navy); }

/* Mobile menu */
.sh__mobile {
  display: none; flex-direction: column; gap: 0;
  background: rgba(1,12,46,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 8px 24px 24px;
}
.sh__mobile a { text-decoration: none; color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.sh__mobile a:last-child { border-bottom: none; }
.sh__mobile .sh__cta--mob { border: none !important; margin-top: 12px; height: 44px; border-radius: 8px; color: #000 !important; }
.sh__mobile.open { display: flex; }
.site-header.is-visible .sh__mobile { background: #f8f9fa; }
.site-header.is-visible .sh__mobile a { color: var(--gray-700); border-bottom-color: var(--gray-200); }


/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 720px;
  background: url('fundo-hero.png') right top / cover no-repeat;
  overflow: visible;
  z-index: 2;
  font-family: 'Inter', Arial, sans-serif;
}

/* vinheta + gradiente de saída na base da hero */
.hero__glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(2,10,36,0.18) 0%,
      transparent 18%,
      transparent 62%,
      rgba(0,27,102,0.55) 82%,
      rgba(248,250,252,0.18) 100%
    );
  pointer-events: none;
  z-index: 1;
}

/* ── INTERNAL HEADER ── */
.hero__hdr {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 64px;
  z-index: 20;
}
.hero__hdr-inner {
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

/* Logo */
.hlogo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.hlogo__img {
  height: 130px;
  width: auto;
  display: block;
}

/* Nav */
.hnav {
  display: flex;
  align-items: center;
  gap: 34px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.hnav a {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.2s;
}
.hnav a:hover { opacity: 0.72; }

/* Header CTA button */
.hhdr__btn {
  flex-shrink: 0;
  height: 40px;
  padding: 0 18px;
  border-radius: 7px;
  background: linear-gradient(180deg, var(--yellow2) 0%, var(--yellow) 100%);
  color: #020202;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.hhdr__btn:hover { opacity: 0.9; }

/* Burger hero mobile */
.hhdr__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hhdr__burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* Mobile nav overlay (hero) */
.hero__mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: rgba(1,12,46,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 24px 24px;
  z-index: 50;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero__mobile-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero__mobile-nav a:last-child { border-bottom: none; }
.hero__mobile-cta {
  margin-top: 12px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFC400;
  color: #000 !important;
  font-weight: 800;
  font-size: 13px;
  border-radius: 8px;
  border-bottom: none !important;
  padding: 0 !important;
}
.hero__mobile-nav.open { display: flex; }

/* ── CONTENT GRID ── */
.hero__wrap {
  position: relative;
  z-index: 5;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
  height: 100%;
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: stretch;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 48px;
  padding-left: 32px;
  max-width: 600px;
}

/* Headline — 3 linhas fixas via <br>, nowrap impede quebra automática */
.hero__h1 {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 800;
  font-size: 66px;
  line-height: 0.88;
  letter-spacing: -3.2px;
  color: #FFFFFF;
  white-space: nowrap;
}
.hy { color: #FFC400; }

/* Subheadline */
.hero__p {
  margin-top: 20px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255,255,255,0.90);
}
.hero__p strong.hy { font-weight: 800; color: #FFC400; }

/* Search bar */
.hero__bar {
  margin-top: 22px;
  display: flex;
}
.hero__bar button {
  height: 48px;
  padding: 0 32px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #FFD21A 0%, #FFC400 100%);
  border: none;
  border-radius: 8px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: opacity 0.2s;
}
.hero__bar button:hover { opacity: 0.9; }

/* Benefits */
.hero__perks {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 25px;
}
.br-mobile { display: none; }
.br-desktop { display: inline; }

.hero__perk {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
}

/* RIGHT COLUMN */
.hero__right {
  position: relative;
  height: 100%;
  overflow: visible;
}

/* NOTEBOOK IMAGE */
.hero__nb {
  position: absolute;
  width: 490px;
  right: 120px;
  top: calc(50% + 79px);
  transform: translateY(-50%);
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.55));
  pointer-events: none;
  z-index: 3;
}


/* SELO DE REGISTRO — carimbo lateral na hero */
.hero__selo {
  position: absolute;
  width: 300px;
  left: -10px;
  bottom: 140px;
  transform: rotate(-14deg);
  opacity: 0.92;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.30));
}

@media (max-width: 900px) {
  .hero__selo {
    width: 160px;
    left: -20px;
    right: auto;
    bottom: 140px;
  }
}

/* ══════════════════════════════════════════════
   SHARED BUTTONS
══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 8px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.04em;
  text-decoration: none; border: none; cursor: pointer;
  transition: opacity 0.2s, transform 0.1s; white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn--yellow { background: linear-gradient(180deg, #FFD21A 0%, #FFC400 100%); color: #020202; }
.btn--yellow:hover { opacity: 0.9; }
.btn--lg { padding: 16px 36px; font-size: 16px; }


/* ══════════════════════════════════════════════
   FAIXA DE CLIENTES (LOGOS ROTATIVOS)
══════════════════════════════════════════════ */
.clients {
  width: 100%;
  height: 190px;
  background: #F7F9FC;
  border-bottom: 1px solid #E5E7EB;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.clients__label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin: 0 0 20px;
  flex-shrink: 0;
}

.clients__track {
  display: flex;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}

.clients__strip {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  list-style: none;
  gap: 56px;
  padding-right: 56px;
  min-width: 100%;
  animation: clients-scroll 34s linear infinite;
}

.clients__strip:first-child {
  padding-left: 56px;
}

.clients__track:hover .clients__strip {
  animation-play-state: paused;
}

.clients__strip li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 80px;
  width: 160px;
}

.clients__strip img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.clients__strip img:hover {
  transform: scale(1.06);
}

@keyframes clients-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 56px)); }
}

@media (max-width: 640px) {
  .clients { height: 150px; }
  .clients__strip { gap: 36px; padding-right: 36px; animation-duration: 22s; }
  .clients__strip:first-child { padding-left: 36px; }
  .clients__strip li { height: 62px; width: 130px; }
  .clients__track { -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%); }
}

@media (prefers-reduced-motion: reduce) {
  .clients__strip { animation: none; }
  .clients__strip:nth-child(2) { display: none; }
}


/* ══════════════════════════════════════════════
   SEÇÃO INSTITUCIONAL
══════════════════════════════════════════════ */
.highlight { color: #FFC400; }

.inst {
  width: 100%;
  background: #F7F9FC;
  padding: 48px 80px;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

.inst__wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.inst__col {
  flex: 1;
  padding-right: 56px;
}
.inst__col--right {
  padding-right: 0;
  padding-left: 56px;
}

/* Titles */
.inst__title-block { margin-bottom: 24px; }
.inst__title-block--sm { margin-bottom: 20px; }

.inst__h2 {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #081120;
  line-height: 1.1;
  letter-spacing: -0.6px;
  margin: 0 0 6px;
}

.inst__blue { color: #2563EB; }

.inst__stroke {
  display: block;
  margin-top: 3px;
}

/* Arguments */
.inst__args {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.inst__arg {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inst__icon-ring {
  width: 44px;
  height: 44px;
  border: 1.5px solid #2563EB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.inst__arg p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  max-width: 110px;
  line-height: 1.4;
  margin: 0;
}

/* Closing line */
.inst__close {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #374151;
  line-height: 1.55;
  margin: 0;
}
.inst__semi { font-weight: 600; }

/* Vertical divider */
.inst__divider {
  width: 1px;
  height: 180px;
  background: #DDE3EC;
  flex-shrink: 0;
  align-self: center;
}

/* Steps row */
.inst__steps {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Card */
.inst__card {
  width: 148px;
  min-height: 140px;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.inst__card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}

.inst__num {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: #E4EAF4;
  line-height: 0.82;
  letter-spacing: -2px;
  display: block;
}

.inst__card h3 {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px;
  line-height: 1.25;
}

.inst__card p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #4B5563;
  line-height: 1.5;
  margin: 0;
}

/* Arrow between cards */
.inst__arrow {
  font-size: 18px;
  color: #CBD5E1;
  flex-shrink: 0;
  line-height: 1;
  margin-bottom: 16px;
}


/* ══════════════════════════════════════════════
   SEÇÃO RISCO
══════════════════════════════════════════════ */
.risk {
  width: 100%;
  background: #FFFFFF url('fundo-secao3.png') center center / cover no-repeat;
  padding: 100px 0;
}

.risk__wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

.risk__header {
  text-align: center;
  margin-bottom: 70px;
}

.risk__h2 {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #081120;
  line-height: 1.1;
  letter-spacing: -2px;
  margin: 0 0 24px;
}

.risk__blue {
  color: #2563EB;
  position: relative;
  display: inline-block;
}

.risk__stroke {
  position: absolute;
  bottom: -10px;
  left: 0;
  pointer-events: none;
  overflow: visible;
}

.risk__sub {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #4B5563;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Cards */
.risk__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.risk__card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.risk__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.risk__ico {
  width: 64px;
  height: 64px;
  background: #EFF6FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.risk__card h3 {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #081120;
  line-height: 1.3;
  margin: 0;
}

.risk__card p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #4B5563;
  line-height: 1.6;
  margin: 0;
}

/* Bloco de destaque */
.risk__highlight {
  background: #F8FAFC;
  border: 1px solid #E5E7EB;
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.risk__highlight p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #081120;
  line-height: 1.45;
  max-width: 820px;
  margin: 0;
}

.risk__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 36px;
  background: #FACC15;
  color: #081120;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s;
}

.risk__cta:hover { background: #EAB308; }


/* ══════════════════════════════════════════════
   VALOR
══════════════════════════════════════════════ */
.valor {
  background: #010C2E;
  padding: 90px 80px;
}
.valor__wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  align-items: center;
}
.valor__h2 {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  color: #FFFFFF;
  max-width: 520px;
  letter-spacing: -1px;
}
.valor__yellow { color: #FFC400; }
.valor__sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-top: 24px;
}
.valor__list {
  list-style: none;
  margin-top: 32px;
  padding: 0;
}
.valor__item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
}
.valor__check {
  width: 22px;
  height: 22px;
  background: #FFC400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.valor__btn {
  display: inline-flex;
  align-items: center;
  height: 56px;
  padding: 0 34px;
  border-radius: 10px;
  background: #FFC400;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  margin-top: 32px;
  transition: opacity 0.2s;
}
.valor__btn:hover { opacity: 0.88; }
.valor__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.valor__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 24px;
  min-height: 140px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.22s ease;
}
.valor__card:hover { transform: translateY(-4px); }
.valor__icon { font-size: 26px; display: block; margin-bottom: 14px; }
.valor__card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.valor__card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.70);
}


/* ══════════════════════════════════════════════
   ACOMPANHE SEU PROCESSO
══════════════════════════════════════════════ */
.acomp { padding: 96px 0; background: #fff; }
.acomp__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.acomp__badge { display: inline-block; background: rgba(37,99,235,0.08); color: #2563EB; font-size: 13px; font-weight: 600; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; letter-spacing: 0.4px; text-transform: uppercase; }
.acomp__h2 { font-size: clamp(28px,3.5vw,40px); font-weight: 800; color: var(--navy); letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 16px; }
.acomp__p { font-size: 16px; color: var(--gray-500); line-height: 1.7; margin-bottom: 28px; }
.acomp__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.acomp__list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--gray-700); font-weight: 500; }
.acomp__list svg { flex-shrink: 0; }
.acomp__btn { display: inline-block; background: var(--navy); color: #fff; font-size: 14px; font-weight: 700; padding: 14px 28px; border-radius: var(--radius-sm); text-decoration: none; letter-spacing: 0.3px; transition: background 0.2s; }
.acomp__btn:hover { background: #0f1f4b; }

.acomp__visual { display: flex; justify-content: center; }
.acomp__card { background: #fff; border: 1px solid var(--gray-200); border-radius: 16px; padding: 28px; width: 100%; max-width: 380px; box-shadow: 0 8px 32px rgba(2,10,36,0.08); }
.acomp__card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.acomp__card-title { font-size: 15px; font-weight: 700; color: var(--navy); }
.acomp__card-status { font-size: 12px; font-weight: 600; color: #2563EB; background: rgba(37,99,235,0.08); padding: 4px 10px; border-radius: 20px; }

.acomp__timeline { display: flex; flex-direction: column; gap: 0; }
.acomp__step { display: flex; align-items: flex-start; gap: 14px; position: relative; padding-bottom: 20px; }
.acomp__step:last-child { padding-bottom: 0; }
.acomp__step::before { content: ''; position: absolute; left: 8px; top: 20px; bottom: 0; width: 2px; background: var(--gray-200); }
.acomp__step:last-child::before { display: none; }
.acomp__step-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--gray-200); background: #fff; flex-shrink: 0; margin-top: 3px; position: relative; z-index: 1; }
.acomp__step--done .acomp__step-dot { background: #2563EB; border-color: #2563EB; }
.acomp__step--active .acomp__step-dot { background: #fff; border-color: #2563EB; box-shadow: 0 0 0 4px rgba(37,99,235,0.15); }
.acomp__step--done::before { background: #2563EB; }
.acomp__step-info strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.acomp__step-info span { font-size: 12px; color: var(--gray-500); }
.acomp__step--active .acomp__step-info strong { color: #2563EB; }

@media (max-width: 768px) {
  .acomp__inner { grid-template-columns: 1fr; gap: 40px; }
  .acomp__card { max-width: 100%; }
}

/* ══════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════ */
.cta-final { background: var(--gray-100); padding: 96px 0; }
.cta-final__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.cta-final__icon { width: 72px; height: 72px; background: rgba(16,185,129,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.cta-final__inner h2 { font-size: clamp(28px,4vw,42px); font-weight: 800; color: #020A24; letter-spacing: -0.5px; }
.cta-final__inner p { color: var(--gray-500); font-size: 17px; margin-bottom: 8px; }


/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer { background: #020A24; padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer__logos { display: flex; align-items: center; justify-content: center; gap: 20px; }
.flogo { display: flex; align-items: center; text-decoration: none; }
.flogo__img { height: 80px; width: auto; display: block; }
.flogo__inpi { height: 108px; width: auto; display: block; opacity: 0.85; margin-top: 12px; }
.footer__left { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer__left p { color: rgba(255,255,255,0.4); font-size: 13px; margin-top: 8px; }
.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__nav a { text-decoration: none; color: rgba(255,255,255,0.55); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.footer__nav a:hover { color: #fff; }
.footer__social { display: flex; gap: 16px; }
.footer__social a { color: rgba(255,255,255,0.5); transition: color 0.2s; display: flex; }
.footer__social a:hover { color: #FFC400; }


/* ══════════════════════════════════════════════
   COMO REGISTRAR — PÁGINA INDEPENDENTE
══════════════════════════════════════════════ */

/* Nav item ativo */
.sh__nav--active { color: #010C2E !important; font-weight: 700 !important; }

/* Compartilhados */
.cr-yellow { color: #FFC400; }
.cr-label {
  display: block;
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 14px;
}
.cr-h2 {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #010C2E;
  line-height: 1.1;
  letter-spacing: -1px;
}
.cr-text {
  font-size: 17px;
  color: #4B5563;
  line-height: 1.75;
  max-width: 520px;
}
.cr-text--mt { margin-top: 16px; }
.cr-sub { font-size: 18px; color: #6B7280; margin-top: 14px; line-height: 1.6; }

/* ── HERO ── */
.cr-hero { background: #010C2E; padding: 140px 80px 100px; }
.cr-hero__wrap {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.cr-hero__tag {
  display: inline-block;
  height: 28px; padding: 0 14px; line-height: 28px;
  background: rgba(255,196,0,0.1);
  border: 1px solid rgba(255,196,0,0.28);
  border-radius: 20px;
  font-size: 11px; font-weight: 700;
  color: #FFC400; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 24px;
}
.cr-hero__h1 {
  font-family: 'Inter', sans-serif;
  font-size: 60px; font-weight: 800;
  color: #FFFFFF; line-height: 1.02; letter-spacing: -2px;
  margin-bottom: 22px;
}
.cr-hero__sub {
  font-size: 18px; font-weight: 400;
  color: rgba(255,255,255,0.7); line-height: 1.6; max-width: 460px;
}
.cr-hero__stats {
  display: flex; align-items: stretch; gap: 0;
  margin-top: 48px; padding: 22px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 14px;
}
.cr-hero__stat { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cr-hero__stat-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.88); line-height: 1.35; }
.cr-hero__stat-info { font-size: 12px; color: rgba(255,255,255,0.4); }
.cr-hero__stat-div { width: 1px; background: rgba(255,255,255,0.1); margin: 0 24px; flex-shrink: 0; }
.cr-hero__img { width: 100%; max-width: 540px; filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6)); }

/* ── O QUE É REGISTRAR ── */
.cr-oq { padding: 100px 80px; background: #FFFFFF; }
.cr-oq__wrap {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.cr-oq__left { display: flex; flex-direction: column; }
.cr-oq__callout {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 28px; padding: 16px 20px;
  background: #EFF6FF; border-left: 3px solid #2563EB; border-radius: 0 8px 8px 0;
  font-size: 14px; color: #1E40AF; line-height: 1.6;
}
.cr-oq__right { display: flex; justify-content: center; }
.cr-oq__visual { display: flex; flex-direction: column; gap: 16px; width: 100%; max-width: 340px; }
.cr-oq__badge {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; background: #010C2E; border-radius: 12px;
  color: #fff; font-size: 15px; font-weight: 600;
}
.cr-oq__doc {
  background: #fff; border: 1px solid #E5E7EB; border-radius: 12px;
  padding: 24px; display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.cr-oq__doc-line { height: 10px; background: #F3F4F6; border-radius: 4px; }
.cr-oq__doc-line--title { height: 14px; background: #E5E7EB; width: 70%; }
.cr-oq__doc-line--short { width: 45%; }
.cr-oq__doc-stamp {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  margin-top: 8px; padding-top: 16px; border-top: 1px dashed #E5E7EB;
}
.cr-oq__doc-stamp span { font-size: 12px; color: #2563EB; font-weight: 600; }

/* ── O QUE NÃO PROTEGE ── */
.cr-nao { padding: 100px 80px; background: #F8F9FA; }
.cr-nao__wrap { max-width: 1280px; margin: 0 auto; }
.cr-nao__header { text-align: center; margin-bottom: 56px; }
.cr-nao__cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.cr-nao__card {
  background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 16px;
  padding: 28px; display: flex; flex-direction: column; gap: 12px;
}
.cr-nao__card--destaque { background: #010C2E; border-color: #010C2E; }
.cr-nao__card--destaque h3 { color: #FFFFFF; }
.cr-nao__card--destaque p { color: rgba(255,255,255,0.65); }
.cr-nao__card-icon {
  width: 44px; height: 44px; background: #F3F4F6;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.cr-nao__card--destaque .cr-nao__card-icon { background: rgba(255,255,255,0.07); }
.cr-nao__card h3 { font-size: 17px; font-weight: 700; color: #010C2E; }
.cr-nao__card p { font-size: 14px; color: #6B7280; line-height: 1.55; flex: 1; }
.cr-nao__badge {
  display: inline-flex; align-items: center;
  height: 24px; padding: 0 10px; border-radius: 20px;
  font-size: 12px; font-weight: 600; width: fit-content;
}
.cr-nao__badge--no { background: #FEF2F2; color: #DC2626; }
.cr-nao__badge--yes { background: rgba(255,196,0,0.15); color: #FFC400; }

/* ── TIMELINE ── */
.cr-timeline { padding: 100px 80px; background: #FFFFFF; }
.cr-timeline__wrap { max-width: 1280px; margin: 0 auto; }
.cr-timeline__header { margin-bottom: 60px; }
.cr-steps { display: grid; grid-template-columns: repeat(5,1fr); }
.cr-step { display: flex; flex-direction: column; }
.cr-step__top { display: flex; align-items: center; margin-bottom: 24px; }
.cr-step__circle {
  width: 44px; height: 44px; flex-shrink: 0;
  background: #010C2E; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: #FFC400; position: relative; z-index: 2;
}
.cr-step__circle--final { background: #FFC400; color: #010C2E; }
.cr-step__line {
  flex: 1; height: 2px; background: #E5E7EB; margin-left: 0;
}
.cr-step__content { padding-right: 20px; }
.cr-step__content h3 { font-size: 15px; font-weight: 700; color: #010C2E; margin-bottom: 8px; }
.cr-step__content p { font-size: 13px; color: #6B7280; line-height: 1.55; }

/* ── PRAZO ── */
.cr-prazo { padding: 100px 80px; background: #F8F9FA; }
.cr-prazo__wrap {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.cr-prazo__card {
  background: #010C2E; border-radius: 18px; padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.cr-prazo__card p { font-size: 19px; font-weight: 600; color: #FFFFFF; line-height: 1.5; }

/* ── INCLUSO ── */
.cr-incluso { padding: 100px 80px; background: #FFFFFF; }
.cr-incluso__wrap { max-width: 1280px; margin: 0 auto; }
.cr-incluso__header { margin-bottom: 56px; }
.cr-incluso__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cr-incluso__card {
  padding: 32px; border: 1px solid #E5E7EB; border-radius: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cr-incluso__card:hover { border-color: #010C2E; box-shadow: 0 4px 24px rgba(1,12,46,0.06); }
.cr-incluso__num { display: block; font-size: 11px; font-weight: 800; color: #2563EB; letter-spacing: 0.06em; margin-bottom: 14px; }
.cr-incluso__card h3 { font-size: 17px; font-weight: 700; color: #010C2E; margin-bottom: 8px; }
.cr-incluso__card p { font-size: 14px; color: #6B7280; line-height: 1.6; }

/* ── FAQ ── */
.cr-faq { padding: 100px 80px; background: #F8F9FA; }
.cr-faq__wrap { max-width: 800px; margin: 0 auto; }
.cr-faq__header { margin-bottom: 48px; }
.cr-faq__list { display: flex; flex-direction: column; }
.cr-faq__item { border-bottom: 1px solid #E5E7EB; }
.cr-faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600;
  color: #010C2E; text-align: left; gap: 16px;
}
.cr-faq__icon { flex-shrink: 0; color: #9CA3AF; transition: transform 0.25s; }
.cr-faq__item.open .cr-faq__icon { transform: rotate(180deg); }
.cr-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.cr-faq__item.open .cr-faq__a { max-height: 200px; padding-bottom: 20px; }
.cr-faq__a p { font-size: 15px; color: #4B5563; line-height: 1.75; }

/* ── ORGANOGRAMA FLUXO ── */
.cr-fluxo { background: #fff; padding: 80px 0 96px; }
.cr-fluxo__inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.cr-fluxo__header { text-align: center; margin-bottom: 64px; }
.cr-fluxo__track { display: flex; flex-direction: column; }

.cr-fluxo__item { display: flex; gap: 28px; align-items: flex-start; }
.cr-fluxo__item--last .cr-fluxo__side { justify-content: flex-start; }

.cr-fluxo__side { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 52px; }
.cr-fluxo__node {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #E5E7EB;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(37,99,235,0.06);
}
.cr-fluxo__node--final {
  background: #2563EB;
  border-color: #2563EB;
  box-shadow: 0 4px 20px rgba(37,99,235,0.3);
}
.cr-fluxo__connector { width: 2px; flex: 1; min-height: 48px; background: #E5E7EB; margin: 6px 0; }

.cr-fluxo__card {
  background: #FAFAFA;
  border: 1px solid #F0F0F0;
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 16px;
  flex: 1;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.cr-fluxo__card:hover { box-shadow: 0 6px 24px rgba(37,99,235,0.08); border-color: #DBEAFE; }
.cr-fluxo__card--final { background: #020A24; border-color: #020A24; }
.cr-fluxo__card--final:hover { box-shadow: 0 6px 24px rgba(2,10,36,0.18); border-color: #020A24; }

.cr-fluxo__num { font-size: 11px; font-weight: 700; color: #9CA3AF; letter-spacing: 1.5px; text-transform: uppercase; display: block; margin-bottom: 8px; }
.cr-fluxo__num--final { color: rgba(255,255,255,0.4); }
.cr-fluxo__title { font-size: 17px; font-weight: 700; color: #020A24; margin-bottom: 8px; }
.cr-fluxo__card--final .cr-fluxo__title { color: #fff; }
.cr-fluxo__desc { font-size: 15px; color: #6B7280; line-height: 1.7; }
.cr-fluxo__card--final .cr-fluxo__desc { color: rgba(255,255,255,0.6); }

@media (max-width: 640px) {
  .cr-fluxo__card { padding: 22px 20px; }
  .cr-fluxo__side { width: 40px; }
  .cr-fluxo__node { width: 40px; height: 40px; }
  .cr-fluxo__item { gap: 18px; }
}

/* ── CTA FINAL ── */
.cr-cta { padding: 100px 80px; background: #010C2E; text-align: center; }
.cr-cta__wrap { max-width: 620px; margin: 0 auto; }
.cr-cta__h2 {
  font-family: 'Inter', sans-serif; font-size: 44px; font-weight: 800;
  color: #FFFFFF; line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px;
}
.cr-cta__sub { font-size: 17px; color: rgba(255,255,255,0.62); line-height: 1.6; margin-bottom: 40px; }
.cr-cta__btn {
  display: inline-flex; align-items: center;
  height: 56px; padding: 0 36px;
  background: #FFC400; color: #000000;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 800;
  border-radius: 10px; text-decoration: none; letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.cr-cta__btn:hover { opacity: 0.88; }

/* ── RESPONSIVO CR ── */
@media (max-width: 1024px) {
  .cr-hero, .cr-oq, .cr-nao, .cr-timeline, .cr-prazo, .cr-incluso, .cr-faq, .cr-cta { padding-left: 40px; padding-right: 40px; }
  .cr-hero__h1 { font-size: 50px; }
  .cr-nao__cards { grid-template-columns: repeat(2,1fr); }
  .cr-steps { grid-template-columns: 1fr; gap: 24px; }
  .cr-step { flex-direction: row; gap: 20px; }
  .cr-step__top { flex-direction: column; align-items: center; margin-bottom: 0; margin-right: 0; }
  .cr-step__line { width: 2px; height: 40px; flex: none; margin-left: 0; }
  .cr-step--last .cr-step__line { display: none; }
  .cr-incluso__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .cr-hero { padding: 100px 24px 64px; }
  .cr-hero__wrap { grid-template-columns: 1fr; gap: 40px; }
  .cr-hero__h1 { font-size: 40px; letter-spacing: -1.5px; }
  .cr-hero__stats { flex-direction: column; gap: 16px; }
  .cr-hero__stat-div { width: 100%; height: 1px; margin: 4px 0; }
  .cr-oq, .cr-nao, .cr-timeline, .cr-prazo, .cr-incluso, .cr-faq, .cr-cta { padding-left: 24px; padding-right: 24px; padding-top: 72px; padding-bottom: 72px; }
  .cr-oq__wrap { grid-template-columns: 1fr; gap: 40px; }
  .cr-prazo__wrap { grid-template-columns: 1fr; gap: 32px; }
  .cr-h2 { font-size: 34px; }
  .cr-cta__h2 { font-size: 32px; }
}
@media (max-width: 640px) {
  .cr-hero__h1 { font-size: 34px; }
  .cr-nao__cards { grid-template-columns: 1fr; }
  .cr-incluso__grid { grid-template-columns: 1fr; }
  .cr-h2 { font-size: 28px; }
  .cr-cta__h2 { font-size: 26px; }
  .cr-faq__q { font-size: 15px; }
}


/* ══════════════════════════════════════════════
   SOBRE (so-)
══════════════════════════════════════════════ */

/* Utilities */
.so-section { padding: 96px 0; }
.so-wrap { max-width: 1140px; margin: 0 auto; padding: 0 40px; }
.so-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #2563EB; margin-bottom: 12px; }
.so-label--center { display: block; text-align: center; }
.so-label--dim { color: rgba(255,255,255,0.45); }
.so-h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.5px; }
.so-h2--light { color: #fff; }
.so-text { font-size: 16px; color: #4B5563; line-height: 1.75; max-width: 520px; }
.so-text--mt { margin-top: 16px; }
.so-section__header { margin-bottom: 56px; }
.so-section__header--center { text-align: center; }
.so-section__header--center .so-label { display: block; }
.so-section__header--light .so-h2 { color: #fff; }
.so-yellow { color: #FFC400; }
.so-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #FFC400; margin-bottom: 20px;
  padding: 6px 14px; border: 1px solid rgba(255,196,0,0.3); border-radius: 20px;
}

/* ── Hero ── */
.so-hero {
  background: #010C2E;
  padding-top: 64px;
  min-height: 620px;
  display: flex;
  align-items: center;
}
.so-hero__wrap {
  max-width: 1140px; margin: 0 auto;
  padding: 72px 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.so-hero__h1 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900; color: #fff;
  line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px;
}
.so-hero__sub {
  font-size: 17px; color: rgba(255,255,255,0.68);
  line-height: 1.72; max-width: 480px;
}
.so-hero__right { display: flex; justify-content: center; align-items: center; }
.so-hero__illus { width: 100%; max-width: 480px; }

/* ── Seção 2 — Quem Somos ── */
.so-quem { background: #fff; }
.so-quem__wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.so-quem__visual { display: flex; justify-content: center; }
.so-quem__cards {
  display: flex; flex-direction: column; gap: 16px;
  width: 100%; max-width: 360px;
}
.so-quem__card {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; border-radius: 14px;
  border: 1px solid #E9ECEF; background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.so-quem__card--mid { background: #010C2E; border-color: #010C2E; transform: translateX(24px); }
.so-quem__card--top { transform: translateX(0); }
.so-quem__card--bot { transform: translateX(12px); }
.so-quem__card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: #EFF6FF; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.so-quem__card-icon--blue { background: rgba(255,255,255,0.12); }
.so-quem__card-title { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.so-quem__card--mid .so-quem__card-title { color: #fff; }
.so-quem__card-title--light { color: #fff !important; }
.so-quem__card-status {
  font-size: 12px; font-weight: 500;
  padding: 2px 8px; border-radius: 10px;
}
.so-quem__card-status--done { background: #ECFDF5; color: #065F46; }
.so-quem__card-status--active { background: rgba(255,196,0,0.15); color: #FFC400; }
.so-quem__progress { margin-top: 6px; height: 5px; background: rgba(255,255,255,0.12); border-radius: 3px; overflow: hidden; }
.so-quem__progress-bar { width: 60%; height: 100%; background: #FFC400; border-radius: 3px; }

/* ── Seção 3 — Como trabalhamos ── */
.so-como { background: var(--gray-100); }
.so-como__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.so-como__card {
  background: #fff; border: 1px solid #E9ECEF; border-radius: 18px;
  padding: 32px 28px; display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.so-como__card:hover { border-color: rgba(37,99,235,0.2); box-shadow: 0 4px 24px rgba(37,99,235,0.07); }
.so-como__num {
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  color: #2563EB; text-transform: uppercase;
}
.so-como__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: #EFF6FF; border-radius: 12px;
}
.so-como__card h3 { font-size: 18px; font-weight: 800; color: var(--navy); }
.so-como__card p { font-size: 14px; color: #6B7280; line-height: 1.65; }

/* ── Seção 4 — Diferencial ── */
.so-dif { background: var(--gray-100); }
.so-dif__cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 800px; margin: 0 auto;
}
.so-dif__col { border-radius: 20px; padding: 40px; }
.so-dif__col--trad { background: #fff; border: 1px solid #E5E7EB; }
.so-dif__col--ello { background: #010C2E; border: 1px solid rgba(255,196,0,0.2); }
.so-dif__col-head { margin-bottom: 28px; }
.so-dif__pill {
  display: inline-block; padding: 6px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 700;
}
.so-dif__pill--trad { background: #F3F4F6; color: #6B7280; border: 1px solid #E5E7EB; }
.so-dif__pill--ello { background: rgba(255,196,0,0.12); color: #FFC400; border: 1px solid rgba(255,196,0,0.28); }
.so-dif__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.so-dif__list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: #6B7280; }
.so-dif__col--ello .so-dif__list li { color: rgba(255,255,255,0.82); }
.so-dif__icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 11px; font-weight: 800; flex-shrink: 0;
}
.so-dif__icon--no { background: #FEE2E2; color: #DC2626; }
.so-dif__icon--yes { background: rgba(255,196,0,0.18); color: #FFC400; }

/* ── Seção 5 — Para quem ── */
.so-paraquem { background: #010C2E; }
.so-paraquem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.so-paraquem__card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 24px 16px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; text-align: center;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.72);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.so-paraquem__card:hover { background: rgba(255,196,0,0.07); border-color: rgba(255,196,0,0.18); color: #fff; }
.so-paraquem__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); border-radius: 10px;
}

/* ── Seção 6 — Compromisso ── */
.so-compromisso { background: #fff; }
.so-compromisso__card {
  max-width: 680px; margin: 0 auto; text-align: center;
  padding: 64px 48px;
  border: 1px solid #E9ECEF; border-radius: 24px;
  background: #FAFAFA;
}
.so-compromisso__mark { display: flex; justify-content: center; margin-bottom: 24px; }
.so-compromisso__h2 {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800;
  color: var(--navy); letter-spacing: -0.5px; margin-bottom: 24px;
}
.so-compromisso__text { font-size: 17px; color: #4B5563; line-height: 1.75; max-width: 540px; margin: 0 auto; }
.so-compromisso__text--mt { margin-top: 16px; }

/* ── CTA Final ── */
.so-cta { background: #010C2E; padding: 100px 0; }
.so-cta__wrap { text-align: center; }
.so-cta__h2 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800; color: #fff; margin-bottom: 16px; letter-spacing: -0.5px;
}
.so-cta__sub {
  font-size: 17px; color: rgba(255,255,255,0.62);
  margin-bottom: 40px; max-width: 460px;
  margin-left: auto; margin-right: auto; line-height: 1.6;
}
.so-cta__btn {
  display: inline-flex; align-items: center;
  height: 54px; padding: 0 36px;
  background: linear-gradient(180deg, var(--yellow2) 0%, var(--yellow) 100%);
  color: #010C2E; font-weight: 800; font-size: 13px;
  letter-spacing: 0.05em; border-radius: 10px; text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.so-cta__btn:hover { opacity: 0.92; transform: translateY(-1px); }

/* ── Responsivo SO ── */
@media (max-width: 1024px) {
  .so-como__grid { grid-template-columns: repeat(2, 1fr); }
  .so-paraquem__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .so-hero__wrap { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px 56px; }
  .so-hero__right { order: -1; }
  .so-hero__illus { max-width: 310px; }
  .so-wrap { padding: 0 24px; }
  .so-quem__wrap { grid-template-columns: 1fr; gap: 48px; }
  .so-quem__card--mid, .so-quem__card--bot { transform: none; }
  .so-dif__cols { grid-template-columns: 1fr; }
  .so-paraquem__grid { grid-template-columns: repeat(2, 1fr); }
  .so-compromisso__card { padding: 40px 28px; }
}
@media (max-width: 640px) {
  .so-section { padding: 64px 0; }
  .so-como__grid { grid-template-columns: repeat(2, 1fr); }
  .so-compromisso__card { padding: 32px 20px; }
  .so-hero__h1 { font-size: 30px; }
}


/* ══════════════════════════════════════════════
   PREÇOS (pc-)
══════════════════════════════════════════════ */

/* Utilities */
.pc-section { padding: 96px 0; }
.pc-wrap { max-width: 1140px; margin: 0 auto; padding: 0 40px; }
.pc-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #2563EB; margin-bottom: 12px; }
.pc-label--center { display: block; text-align: center; }
.pc-h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.5px; }
.pc-sub { font-size: 16px; color: #6B7280; line-height: 1.65; margin-top: 12px; }
.pc-yellow { color: #FFC400; }
.pc-section__header { margin-bottom: 56px; }
.pc-section__header--center { text-align: center; }
.pc-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #FFC400; margin-bottom: 20px;
  padding: 6px 14px; border: 1px solid rgba(255,196,0,0.3); border-radius: 20px;
}

/* ── Hero ── */
.pc-hero {
  background: #010C2E;
  padding-top: 64px;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.pc-hero__wrap {
  max-width: 1140px; margin: 0 auto;
  padding: 64px 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.pc-hero__h1 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900; color: #fff;
  line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px;
}
.pc-hero__sub {
  font-size: 17px; color: rgba(255,255,255,0.68);
  line-height: 1.7; margin-bottom: 36px; max-width: 440px;
}
.pc-hero__perks { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.pc-hero__perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.82);
}
.pc-hero__right { display: flex; justify-content: center; align-items: center; }
.pc-hero__img { width: 100%; max-width: 500px; filter: drop-shadow(0 40px 80px rgba(0,0,0,0.55)); }

/* ── Seção 2 — Incluso ── */
.pc-incluso { background: #fff; }
.pc-incluso__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pc-incluso__card {
  padding: 28px 24px; border: 1px solid #E9ECEF; border-radius: 16px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pc-incluso__card:hover { border-color: rgba(37,99,235,0.25); box-shadow: 0 4px 20px rgba(37,99,235,0.07); }
.pc-incluso__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: #EFF6FF; border-radius: 12px;
}
.pc-incluso__card h3 { font-size: 15px; font-weight: 700; color: var(--navy); }
.pc-incluso__card p { font-size: 14px; color: #6B7280; line-height: 1.6; }

/* ── Seção 3 — Pricing ── */
.pc-pricing { background: var(--gray-100); }
.pc-plans {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}
.pc-plan {
  background: #fff; border: 1px solid #E5E7EB; border-radius: 20px;
  padding: 36px 32px; display: flex; flex-direction: column;
  position: relative;
}
.pc-plan--featured {
  background: #010C2E;
  border-color: transparent;
  border-top: 3px solid #FFC400;
  box-shadow: 0 24px 64px rgba(1,12,46,0.28);
  transform: translateY(-6px);
}
.pc-plan__badge {
  display: inline-flex; align-items: center;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 20px;
  background: rgba(255,196,0,0.15); color: #FFC400;
  border: 1px solid rgba(255,196,0,0.3);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  width: fit-content;
}
.pc-plan__top { margin-bottom: 24px; }
.pc-plan__name {
  font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 8px;
}
.pc-plan--featured .pc-plan__name { color: #fff; }
.pc-plan__desc { font-size: 14px; color: #6B7280; line-height: 1.55; }
.pc-plan--featured .pc-plan__desc { color: rgba(255,255,255,0.55); }
.pc-plan__price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid #F3F4F6;
}
.pc-plan--featured .pc-plan__price { border-bottom-color: rgba(255,255,255,0.1); }
.pc-plan__currency { font-size: 20px; font-weight: 700; color: var(--navy); }
.pc-plan--featured .pc-plan__currency { color: rgba(255,255,255,0.7); }
.pc-plan__amount {
  font-size: 52px; font-weight: 900; letter-spacing: -2px;
  color: var(--navy); line-height: 1;
}
.pc-plan--featured .pc-plan__amount { color: #fff; }
.pc-plan__list {
  list-style: none; padding: 0; display: flex; flex-direction: column;
  gap: 13px; flex: 1; margin-bottom: 32px;
}
.pc-plan__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: #374151;
}
.pc-plan--featured .pc-plan__list li { color: rgba(255,255,255,0.82); }
.pc-plan__btn {
  display: flex; align-items: center; justify-content: center;
  height: 48px; border-radius: 10px; text-decoration: none;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  transition: opacity 0.2s, transform 0.15s;
}
.pc-plan__btn:hover { opacity: 0.88; transform: translateY(-1px); }
.pc-plan__btn--outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid #D1D5DB;
}
.pc-plan__btn--outline:hover { border-color: var(--navy); }
.pc-plan__btn--featured {
  background: linear-gradient(180deg, var(--yellow2) 0%, var(--yellow) 100%);
  color: #010C2E; border: none;
}

/* ── Seção 4 — O que influencia ── */
.pc-influ { background: #fff; }
.pc-influ__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pc-influ__card {
  background: #fff; border: 1px solid #E9ECEF; border-radius: 16px;
  padding: 28px 24px; display: flex; flex-direction: column; gap: 14px;
}
.pc-influ__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: #EFF6FF; border-radius: 12px;
}
.pc-influ__card h3 { font-size: 16px; font-weight: 700; color: var(--navy); }
.pc-influ__card p { font-size: 14px; color: #6B7280; line-height: 1.6; }

/* ── Seção 5 — Comparativo ── */
.pc-compare { background: #EEF4FF; }
.pc-compare__cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 760px; margin: 0 auto;
}
.pc-compare__col { border-radius: 20px; padding: 40px; background: #fff; border: 1px solid #E5E7EB; }
.pc-compare__col--yes { border-left: 4px solid #2563EB; }
.pc-compare__col--no { border-left: 4px solid #F59E0B; }
.pc-compare__col-head { margin-bottom: 24px; }
.pc-compare__pill {
  display: inline-block; padding: 6px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 700;
}
.pc-compare__pill--yes { background: #EFF6FF; color: #2563EB; }
.pc-compare__pill--no { background: #FFFBEB; color: #B45309; }
.pc-compare__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.pc-compare__list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: #374151;
}
.pc-compare__icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 11px; font-weight: 800; flex-shrink: 0;
}
.pc-compare__icon--yes { background: #EFF6FF; color: #2563EB; }
.pc-compare__icon--no { background: #FFFBEB; color: #D97706; }

/* ── Seção 6 — FAQ ── */
.pc-faq { background: var(--gray-100); }
.pc-faq__inner { max-width: 760px; }

/* ── CTA Final ── */
.pc-cta { background: #010C2E; padding: 100px 0; }
.pc-cta__wrap { text-align: center; }
.pc-cta__h2 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800; color: #fff; margin-bottom: 16px; letter-spacing: -0.5px;
}
.pc-cta__sub {
  font-size: 17px; color: rgba(255,255,255,0.62);
  margin-bottom: 40px; max-width: 500px;
  margin-left: auto; margin-right: auto; line-height: 1.6;
}
.pc-cta__btn {
  display: inline-flex; align-items: center;
  height: 54px; padding: 0 36px;
  background: linear-gradient(180deg, var(--yellow2) 0%, var(--yellow) 100%);
  color: #010C2E; font-weight: 800; font-size: 13px;
  letter-spacing: 0.05em; border-radius: 10px; text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.pc-cta__btn:hover { opacity: 0.92; transform: translateY(-1px); }

/* ── Responsivo PC ── */
@media (max-width: 1024px) {
  .pc-incluso__grid { grid-template-columns: repeat(3, 1fr); }
  .pc-influ__grid { grid-template-columns: repeat(2, 1fr); }
  .pc-plans { gap: 16px; }
  .pc-plan { padding: 28px 24px; }
  .pc-plan--featured { transform: none; }
}
@media (max-width: 860px) {
  .pc-hero__wrap { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px 56px; }
  .pc-hero__right { order: -1; }
  .pc-hero__img { max-width: 300px; }
  .pc-wrap { padding: 0 24px; }
  .pc-incluso__grid { grid-template-columns: repeat(2, 1fr); }
  .pc-plans { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .pc-plan--featured { transform: none; }
  .pc-compare__cols { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pc-section { padding: 64px 0; }
  .pc-incluso__grid { grid-template-columns: repeat(2, 1fr); }
  .pc-influ__grid { grid-template-columns: repeat(2, 1fr); }
  .pc-plans { max-width: 100%; }
  .pc-plan__amount { font-size: 44px; }
}


/* ══════════════════════════════════════════════
   PROTEÇÃO DE MARCA (pm-)
══════════════════════════════════════════════ */

/* Utilities */
.pm-section { padding: 96px 0; }
.pm-wrap { max-width: 1140px; margin: 0 auto; padding: 0 40px; }
.pm-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #2563EB; margin-bottom: 12px; }
.pm-label--yellow { color: #FFC400; }
.pm-label--dim { color: rgba(255,255,255,0.45); }
.pm-label--center { display: block; text-align: center; }
.pm-h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.5px; }
.pm-h2--light { color: #fff; }
.pm-text { font-size: 16px; color: #4B5563; line-height: 1.75; max-width: 520px; }
.pm-text--mt { margin-top: 16px; }
.pm-sub { font-size: 16px; color: #6B7280; line-height: 1.6; margin-top: 12px; }
.pm-sub--light { color: rgba(255,255,255,0.55); }
.pm-yellow { color: #FFC400; }
.pm-section__header { margin-bottom: 56px; }
.pm-section__header--center { text-align: center; }
.pm-section__header--light .pm-h2 { color: #fff; }
.pm-section__header--light .pm-sub { color: rgba(255,255,255,0.55); }

/* ── Hero ── */
.pm-hero {
  background: #010C2E;
  padding-top: 64px;
  min-height: 620px;
  display: flex;
  align-items: center;
}
.pm-hero__wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 72px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pm-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #FFC400; margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(255,196,0,0.3);
  border-radius: 20px;
}
.pm-hero__h1 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.pm-hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.pm-hero__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.pm-hero__badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 8px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.82);
}
.pm-hero__right { display: flex; justify-content: center; align-items: center; }
.pm-hero__illus { width: 100%; max-width: 480px; }

/* ── Seção 2 — Erro ── */
.pm-erro { background: #fff; }
.pm-erro__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pm-erro__visual { display: flex; justify-content: center; }
.pm-erro__illus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 360px;
}
.pm-erro__no-card, .pm-erro__yes-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 16px; border-radius: 16px;
  text-align: center;
}
.pm-erro__no-card { background: #f8f9fa; border: 1px solid #E5E7EB; }
.pm-erro__yes-card { background: #010C2E; border: 1px solid rgba(255,196,0,0.25); }
.pm-erro__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid #E5E7EB; border-radius: 10px;
}
.pm-erro__icon--yes { background: rgba(255,255,255,0.08); border-color: rgba(255,196,0,0.2); }
.pm-erro__name { font-size: 13px; font-weight: 600; color: #374151; }
.pm-erro__name--yes { color: #fff; }
.pm-erro__x { font-size: 15px; font-weight: 700; color: #EF4444; }
.pm-erro__check { font-size: 18px; font-weight: 700; color: #FFC400; }

/* ── Seção 3 — Não protege ── */
.pm-naoprot { background: var(--gray-100); }
.pm-naoprot__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pm-naoprot__card {
  background: #fff; border: 1px solid #E5E7EB; border-radius: 16px;
  padding: 28px 24px; display: flex; flex-direction: column; gap: 12px;
}
.pm-naoprot__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: #EFF6FF; border-radius: 12px; flex-shrink: 0;
}
.pm-naoprot__card h3 { font-size: 17px; font-weight: 700; color: var(--navy); }
.pm-naoprot__card p { font-size: 14px; color: #6B7280; line-height: 1.6; flex: 1; }
.pm-badge {
  display: inline-flex; align-items: center;
  padding: 5px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 600; align-self: flex-start;
}
.pm-badge--no { background: #FEF2F2; color: #DC2626; border: 1px solid #FECACA; }

/* ── Seção 4 — Realmente protege ── */
.pm-realprot { background: #010C2E; }
.pm-realprot__card {
  background: linear-gradient(135deg, rgba(255,196,0,0.06) 0%, rgba(37,99,235,0.08) 100%);
  border: 1px solid rgba(255,196,0,0.18);
  border-radius: 24px; padding: 64px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 72px; align-items: center;
}
.pm-realprot__h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 18px; letter-spacing: -0.5px;
}
.pm-realprot__text { font-size: 17px; color: rgba(255,255,255,0.68); line-height: 1.7; margin-bottom: 32px; }
.pm-realprot__points { list-style: none; display: flex; flex-direction: column; gap: 14px; padding: 0; }
.pm-realprot__point { display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.82); }
.pm-realprot__dot { width: 8px; height: 8px; background: #FFC400; border-radius: 50%; flex-shrink: 0; }
.pm-realprot__right { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.pm-realprot__shield { width: 180px; height: 180px; }
.pm-realprot__shield svg { width: 100%; height: 100%; }
.pm-realprot__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; background: #FFC400; color: #010C2E;
  font-size: 11px; font-weight: 800; letter-spacing: 0.06em;
  border-radius: 8px; text-transform: uppercase; white-space: nowrap;
}

/* ── Seção 5 — Riscos ── */
.pm-risks { background: #fff; }
.pm-risks__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pm-risks__card {
  background: #fff; border: 1px solid #E5E7EB; border-radius: 16px;
  padding: 28px 24px; display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.pm-risks__card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.07); border-color: rgba(37,99,235,0.2); }
.pm-risks__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: #EFF6FF; border-radius: 12px;
}
.pm-risks__card h3 { font-size: 16px; font-weight: 700; color: var(--navy); }
.pm-risks__card p { font-size: 14px; color: #6B7280; line-height: 1.6; }

/* ── Seção 6 — Quem deve registrar ── */
.pm-quem { background: #010C2E; }
.pm-quem__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.pm-quem__card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 24px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; text-align: center;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.pm-quem__card:hover { background: rgba(255,196,0,0.07); border-color: rgba(255,196,0,0.18); color: #fff; }
.pm-quem__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); border-radius: 10px;
}

/* ── Seção 7 — Comparativo ── */
.pm-compare { background: var(--gray-100); }
.pm-compare__cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 820px; margin: 0 auto;
}
.pm-compare__col { border-radius: 20px; padding: 40px; }
.pm-compare__col--no { background: #fff; border: 1px solid #E5E7EB; }
.pm-compare__col--yes { background: #010C2E; border: 1px solid rgba(255,196,0,0.18); }
.pm-compare__col-head { margin-bottom: 28px; }
.pm-compare__pill {
  display: inline-block; padding: 6px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 700;
}
.pm-compare__pill--no { background: #f3f4f6; color: #6B7280; border: 1px solid #E5E7EB; }
.pm-compare__pill--yes { background: rgba(255,196,0,0.12); color: #FFC400; border: 1px solid rgba(255,196,0,0.28); }
.pm-compare__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.pm-compare__list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: #6B7280; }
.pm-compare__list--yes li { color: rgba(255,255,255,0.8); }
.pm-compare__icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 12px; font-weight: 800; flex-shrink: 0;
}
.pm-compare__icon--no { background: #FEE2E2; color: #DC2626; }
.pm-compare__icon--yes { background: rgba(255,196,0,0.18); color: #FFC400; }

/* ── Seção 8 — FAQ ── */
.pm-faq { background: #fff; }
.pm-faq__inner { max-width: 760px; }

/* ── CTA Final ── */
.pm-cta { background: #010C2E; padding: 100px 0; }
.pm-cta__wrap { text-align: center; }
.pm-cta__h2 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800; color: #fff; margin-bottom: 16px; letter-spacing: -0.5px;
}
.pm-cta__sub {
  font-size: 17px; color: rgba(255,255,255,0.62);
  margin-bottom: 40px; max-width: 500px;
  margin-left: auto; margin-right: auto; line-height: 1.6;
}
.pm-cta__btn {
  display: inline-flex; align-items: center;
  height: 54px; padding: 0 36px;
  background: linear-gradient(180deg, var(--yellow2) 0%, var(--yellow) 100%);
  color: #010C2E; font-weight: 800; font-size: 13px;
  letter-spacing: 0.05em; border-radius: 10px; text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.pm-cta__btn:hover { opacity: 0.92; transform: translateY(-1px); }

/* ── Responsivo PM ── */
@media (max-width: 1024px) {
  .pm-naoprot__grid { grid-template-columns: repeat(2, 1fr); }
  .pm-risks__grid { grid-template-columns: repeat(2, 1fr); }
  .pm-quem__grid { grid-template-columns: repeat(4, 1fr); }
  .pm-realprot__card { padding: 48px; gap: 48px; }
}
@media (max-width: 860px) {
  .pm-hero__wrap { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px 56px; }
  .pm-hero__right { order: -1; }
  .pm-hero__illus { max-width: 300px; }
  .pm-hero__sub { max-width: 100%; }
  .pm-wrap { padding: 0 24px; }
  .pm-erro__wrap { grid-template-columns: 1fr; gap: 48px; }
  .pm-realprot__card { grid-template-columns: 1fr; gap: 40px; padding: 40px 32px; }
  .pm-realprot__right { flex-direction: row; justify-content: center; }
  .pm-quem__grid { grid-template-columns: repeat(3, 1fr); }
  .pm-compare__cols { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pm-section { padding: 64px 0; }
  .pm-naoprot__grid { grid-template-columns: repeat(2, 1fr); }
  .pm-risks__grid { grid-template-columns: repeat(2, 1fr); }
  .pm-quem__grid { grid-template-columns: repeat(2, 1fr); }
  .pm-realprot__card { padding: 28px 20px; }
  .pm-realprot__right { flex-direction: column; align-items: center; }
  .pm-erro__illus { max-width: 100%; }
  .pm-hero__h1 { font-size: 30px; }
}


/* ══════════════════════════════════════════════
   WHATSAPP FLUTUANTE
══════════════════════════════════════════════ */
.whats-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whats-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}


/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .hero__nb { width: 520px; right: -8px; top: 180px; }
  .hero__wrap { padding: 0 48px; }
  .hero__hdr-inner { padding: 0 48px; }
  .valor { padding: 90px 40px; }
  .valor__wrap { gap: 48px; }
  .valor__h2 { font-size: 44px; }
}

@media (max-width: 960px) {
  .hero { height: auto; min-height: 100svh; padding-bottom: 40px; overflow: hidden; }
  .hero__wrap { grid-template-columns: 1fr; padding: 0 32px; display: flex; flex-direction: column; height: auto; }
  .hero__left { padding-top: 160px; padding-left: 0; max-width: 100%; }
  .hero__h1 { font-size: 52px; white-space: normal; }
  .hero__right { display: flex; justify-content: center; }
  .hero__nb { position: relative; width: 100%; max-width: 420px; right: auto; top: auto; transform: none; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.45)); }
  .hnav { display: none; }
  .hhdr__btn { display: none; }
  .hhdr__burger { display: flex; }
  .hero__hdr-inner { padding: 0 24px; }
  .hlogo { margin-left: -19px; }
}

@media (max-width: 860px) {
  .hero__wrap { padding: 0 24px; }
  .hero__left { padding-top: 200px; }
  .br-mobile { display: inline; }
  .br-desktop { display: none; }
  .hero__perk { white-space: nowrap; font-size: 12px; }
  .hero__h1 { font-size: 34px; letter-spacing: -1.5px; }
  .hero__p { font-size: 15px; }
  .hero__bar button { font-size: 11px; }
  .hero__perks { gap: 12px; flex-wrap: wrap; }
  .hero { background-position: 75% top; }
  .inst { padding: 48px 24px 56px; }
  .inst__wrap { flex-direction: column; gap: 48px; align-items: flex-start; }
  .inst__col { padding-right: 0; }
  .inst__col--right { padding-left: 0; }
  .inst__divider { display: none; }
  .inst__h2 { font-size: 26px; }
  .inst__args { gap: 28px; flex-wrap: wrap; }
  .inst__steps { flex-wrap: wrap; gap: 16px; }
  .inst__card { width: 100%; min-height: auto; }
  .risk { padding: 64px 0; }
  .risk__wrap { padding: 0 24px; }
  .risk__h2 { font-size: 36px; }
  .risk__sub { font-size: 17px; }
  .risk__cards { grid-template-columns: repeat(2, 1fr); }
  .risk__highlight p { font-size: 22px; }
  .valor { padding: 64px 20px; }
  .valor__wrap { grid-template-columns: 1fr; gap: 40px; }
  .valor__h2 { font-size: 36px; max-width: 100%; letter-spacing: -0.5px; }
  .valor__sub { max-width: 100%; font-size: 16px; }
  .valor__list { margin-top: 24px; }
  .valor__item { font-size: 15px; margin-bottom: 14px; }
  .valor__btn { width: 100%; justify-content: center; box-sizing: border-box; }
  .valor__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .valor__card { padding: 20px; min-height: auto; }
  .valor__card h3 { font-size: 15px; }
  .valor__icon { font-size: 22px; margin-bottom: 10px; }
}

@media (max-width: 640px) {
  .sh__nav { display: none; }
  .sh__burger { display: flex; margin-left: 10px; }
  .sh__inner { padding: 0 20px; }
  .sh__cta { font-size: 11px; padding: 0 12px; height: 36px; }
  .sh__logo { margin-left: -19px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__nav { justify-content: center; }
  .footer__social { justify-content: center; }
  .risk__cards { grid-template-columns: 1fr; }
  .valor { padding: 56px 20px; }
  .valor__h2 { font-size: 30px; letter-spacing: -0.5px; }
  .valor__sub { font-size: 15px; margin-top: 16px; }
  .valor__item { font-size: 15px; margin-bottom: 14px; }
  .valor__grid { grid-template-columns: 1fr; gap: 12px; }
  .valor__card { padding: 20px; min-height: auto; }
  .valor__card h3 { font-size: 16px; }
  .valor__card p { font-size: 14px; }
  .valor__icon { font-size: 24px; margin-bottom: 10px; }
  .sh__inner { padding: 0 20px; }
}

@media (max-width: 390px) {
  .hero__h1 { font-size: 28px; letter-spacing: -1px; }
  .hero__bar button { font-size: 10px; }
  .hero__perks { flex-wrap: wrap; gap: 8px; }
  .hero__perk { white-space: nowrap; font-size: 11px; }
  .hlogo__img { height: 90px; }
  .hero__nb { max-width: 280px; }
}
