/* ============================================================================
   LP Embaixador Certifica+ — Programa de indicação
   Built on the Certifica+ Design System (colors_and_type.css).
   Shares the same flat, high-contrast, warm system as the Seguro de Vida LP.
   Separation comes from color + hairline borders — no decorative shadows on
   brand graphics. New blocks at the bottom extend (never rewrite) the system.
   ============================================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--fg1);
  background: var(--branco);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
:focus-visible { outline: 3px solid var(--laranja); outline-offset: 3px; border-radius: 4px; }

/* ---- Layout helpers ------------------------------------------------------ */
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding-inline: 24px; }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(44px, 6vw, 80px); }
section[id] { scroll-margin-top: 88px; }
.bg-areia { background: var(--areia); }
.bg-cinza { background: var(--cinza); }
.bg-dark { background: var(--preto); color: var(--fg-on-dark); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-xs); font-weight: var(--w-semibold);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--laranja);
}
.eyebrow--muted { color: var(--fg3); }
.bg-dark .eyebrow { color: var(--laranja-claro); }

.section-head { max-width: 720px; margin: 0 auto; text-align: center; }
.section-head.left { margin: 0; text-align: left; max-width: 660px; }
h1, h2, h3, h4 { margin: 0; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

.h-display { font-weight: var(--w-semibold); font-size: clamp(34px, 6.2vw, var(--fs-h1)); line-height: var(--lh-tight); letter-spacing: var(--ls-tight); }
.h-section { font-weight: var(--w-semibold); font-size: clamp(28px, 4.6vw, var(--fs-h2)); line-height: var(--lh-snug); letter-spacing: var(--ls-tight); }
.h-sub { font-weight: var(--w-medium); font-size: clamp(20px, 2.6vw, var(--fs-h3)); line-height: var(--lh-snug); letter-spacing: var(--ls-tight); }
.lead { font-size: clamp(16px, 2vw, var(--fs-lg)); line-height: var(--lh-relaxed); color: var(--fg2); }
.bg-dark .lead { color: var(--fg-on-dark-2); }
.muted { color: var(--fg3); }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: var(--w-semibold); border-radius: var(--r-pill);
  border: 1.5px solid transparent; cursor: pointer; text-align: center;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn--lg { padding: 17px 32px; font-size: 17px; }
.btn--md { padding: 13px 26px; font-size: 15px; }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--primary { background: var(--laranja); color: var(--fg-on-laranja); }
.btn--primary:hover { background: var(--laranja-escuro); }
.btn--dark { background: var(--preto); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--ghost { background: #fff; color: var(--fg1); border-color: var(--border-forte); }
.btn--ghost:hover { background: var(--cinza); }
.btn--ondark { background: rgba(255,255,255,0.12); color: #fff; }
.btn--ondark:hover { background: #fff; color: var(--preto); }
.btn .ic { width: 18px; height: 18px; }
.btn--block { width: 100%; }

.cta-group { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.micro { display: inline-flex; align-items: center; gap: 7px; font-size: var(--fs-sm); color: var(--fg3); }
.micro .ic { width: 15px; height: 15px; color: var(--verde); }

/* ---- Pill chip ----------------------------------------------------------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 12px; border-radius: var(--r-pill);
  font-size: var(--fs-sm); font-weight: var(--w-semibold);
}
.chip--orange { background: rgba(255,85,0,0.10); color: #C24100; }
.chip--green { background: var(--verde-tint); color: #138A4A; }
.chip--ondark { background: rgba(255,255,255,0.10); color: #fff; }
.chip--surface { background: #fff; border: 1px solid var(--border); color: var(--fg2); }
.chip .dot { width: 8px; height: 8px; border-radius: 999px; background: currentColor; }
.chip .ic { width: 16px; height: 16px; }
.chip__plus {
  display: inline-flex; width: 22px; height: 22px; flex: none;
  align-items: center; justify-content: center;
  background: rgba(255,85,0,0.12); border-radius: var(--r-pill);
}
.chip__plus img { height: 11px; display: block; }

/* ============================================================================
   Header
   ============================================================================ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand-lockup { display: flex; align-items: center; gap: 12px; flex: none; }
.brand-lockup img.cmais { height: 24px; display: block; }
.brand-lockup .divider { width: 1.5px; height: 24px; background: var(--cinza-medio); }
.brand-lockup .brand-tag { font-size: 13px; font-weight: var(--w-semibold); letter-spacing: 0.02em; color: var(--fg2); }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  color: var(--fg2); font-size: 14.5px; font-weight: var(--w-medium);
  padding: 8px 12px; border-radius: var(--r-sm);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav a:hover { color: var(--fg1); background: var(--cinza); }
.header__cta { margin-left: 8px; flex: none; }

/* ============================================================================
   Hero — copy + CSS phone mockup
   ============================================================================ */
.hero { position: relative; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 5vw, 56px);
  align-items: center;
}
.hero__copy { max-width: 560px; }
.hero h1 { margin: 0 0 18px; }
.hero h1 .accent { color: var(--laranja); }
.hero__sub { margin-bottom: 14px; }
.hero__note { margin-bottom: 30px; max-width: 500px; }
.hero__cta { margin-top: 0; }

/* Phone mockup */
.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__visual .sparkle-bg {
  position: absolute; top: -18px; right: 8px; width: 120px; height: 120px;
  opacity: 0.16; pointer-events: none; color: var(--laranja);
}
.phone {
  width: 286px; background: #fff; border: 1px solid var(--border);
  border-radius: 32px; box-shadow: 0 18px 50px rgba(17,17,17,0.12);
  padding: 14px; position: relative;
}
.phone__notch { height: 5px; width: 90px; background: var(--cinza-medio); border-radius: var(--r-pill); margin: 4px auto 14px; }
.phone__head {
  display: flex; align-items: center; gap: 8px;
  padding: 0 4px 12px; border-bottom: 1px solid var(--cinza);
}
.phone__head img { height: 16px; }
.phone__head span {
  font-size: 11px; font-weight: var(--w-semibold); color: var(--fg3);
  border-left: 1px solid var(--cinza-medio); padding-left: 8px;
}
.phone__list { padding: 14px 4px 4px; display: flex; flex-direction: column; gap: 10px; }
.phone__item {
  display: flex; align-items: center; gap: 12px;
  background: var(--areia); border-radius: 14px; padding: 12px;
}
.phone__item .pi-icon {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  background: #fff; display: flex; align-items: center; justify-content: center; color: var(--laranja);
}
.phone__item .pi-icon .ic { width: 22px; height: 22px; }
.phone__item .pi-body { flex: 1; }
.phone__item .pi-body b { display: block; font-size: 13.5px; font-weight: var(--w-semibold); color: var(--fg1); }
.phone__item .pi-body span { font-size: 11px; color: var(--fg3); }
.phone__item .pi-chev { width: 18px; height: 18px; color: var(--fg3); flex: none; }
.phone-badge {
  position: absolute; bottom: 8px; left: -14px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 10px 28px rgba(17,17,17,0.12);
  padding: 11px 14px; display: flex; align-items: center; gap: 10px;
}
.phone-badge .pb-icon {
  width: 34px; height: 34px; border-radius: var(--r-pill); flex: none;
  background: var(--verde-tint); display: flex; align-items: center; justify-content: center; color: #138A4A;
}
.phone-badge .pb-icon .ic { width: 18px; height: 18px; }
.phone-badge small { display: block; font-size: 11px; color: var(--fg3); line-height: 1.2; }
.phone-badge b { font-size: 14px; font-weight: var(--w-bold); color: var(--fg1); }

/* Hero trust strip (partner seguradoras) */
.hero__strip { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--areia-escuro); }
.hero__strip .strip-cap {
  margin: 0 0 16px; text-align: center; font-size: 13px; font-weight: var(--w-semibold);
  letter-spacing: 0.02em; color: var(--fg3); text-transform: uppercase;
}
.brand-tiles { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.brand-tile {
  display: flex; align-items: center; justify-content: center;
  height: 54px; width: 180px; border: 1px solid var(--border);
  border-radius: 14px; background: #fff; padding: 10px 18px;
}
.brand-tile img { max-height: 34px; max-width: 100%; object-fit: contain; }
.brand-tile.tile-mag img { max-height: 48px; }

/* ============================================================================
   Cards grid (programa benefits)
   ============================================================================ */
.grid { display: grid; gap: 20px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 24px; transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.feature-card:hover { border-color: var(--laranja); transform: translateY(-3px); }
.feature-card .fc-icon {
  width: 48px; height: 48px; border-radius: 13px; margin-bottom: 18px;
  background: var(--areia); display: flex; align-items: center; justify-content: center;
}
.feature-card .fc-icon .ic { width: 24px; height: 24px; color: var(--preto); }
.feature-card.accent .fc-icon { background: var(--laranja); }
.feature-card.accent .fc-icon .ic { color: #fff; }
.feature-card h3 { font-size: var(--fs-lg); font-weight: var(--w-semibold); margin-bottom: 8px; line-height: var(--lh-snug); }
.feature-card p { font-size: var(--fs-sm); color: var(--fg2); line-height: var(--lh-relaxed); }

.section-cta { margin-top: 44px; display: flex; justify-content: center; }

/* ============================================================================
   How it works — 4-step timeline + flow strip
   ============================================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.step {
  position: relative; background: #fff; border: 1px solid var(--border);
  border-radius: 18px; padding: 26px 22px;
}
.step__num {
  width: 40px; height: 40px; border-radius: var(--r-pill); flex: none;
  background: var(--laranja); color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: var(--w-bold); font-size: 17px; margin-bottom: 18px;
}
.step h3 { font-size: 17px; font-weight: var(--w-semibold); margin-bottom: 8px; }
.step p { font-size: var(--fs-sm); color: var(--fg2); line-height: var(--lh-relaxed); }

.flow-strip {
  margin-top: 36px; background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 22px 20px; display: flex; flex-wrap: nowrap; align-items: center; justify-content: center;
  gap: 10px; overflow-x: auto;
}
.flow-strip .flow-pill {
  flex: none; white-space: nowrap;
  font-size: 13.5px; font-weight: var(--w-semibold); color: var(--fg1);
  background: var(--areia); padding: 8px 14px; border-radius: var(--r-pill);
}
.flow-strip .flow-pill.is-final { color: #fff; background: var(--laranja); font-weight: var(--w-bold); }
.flow-strip .flow-arrow { width: 18px; height: 18px; color: var(--laranja); flex: none; }

/* ============================================================================
   Product store cards (Moto / Auto / Vida — with price)
   ============================================================================ */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.product-card:hover { border-color: var(--border-forte); transform: translateY(-3px); }
.product-card__head { padding: 26px 24px 0; display: flex; align-items: center; gap: 14px; }
.product-card__head .pc-icon {
  width: 52px; height: 52px; border-radius: 14px; flex: none;
  background: var(--areia); display: flex; align-items: center; justify-content: center; color: var(--preto);
}
.product-card__head .pc-icon .ic { width: 26px; height: 26px; }
.product-card__head h3 { font-size: 21px; font-weight: var(--w-semibold); }
.product-card__body { padding: 16px 24px 0; flex: 1; }
.product-card__body p { font-size: var(--fs-sm); line-height: var(--lh-relaxed); color: var(--fg2); margin-bottom: 16px; }
.product-card .pc-insurer {
  display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg2); margin-bottom: 14px;
}
.product-card .pc-insurer .ic { width: 16px; height: 16px; color: var(--fg3); flex: none; }
.product-card .pc-insurer strong { font-weight: var(--w-semibold); color: var(--fg1); }
.product-card .pc-logo {
  display: flex; align-items: center; justify-content: center; height: 42px;
  border: 1px solid var(--border); border-radius: 10px; background: #fff; padding: 6px 14px; margin-bottom: 18px;
}
.product-card .pc-logo img { max-height: 26px; max-width: 100%; object-fit: contain; }
.product-card .pc-logo.logo-mag img { max-height: 36px; }
.product-card__foot { padding: 0 24px 24px; }
.product-card .pc-price {
  background: var(--areia); border-radius: 14px; padding: 14px 16px; margin-bottom: 14px;
  display: flex; align-items: baseline; gap: 8px;
}
.product-card .pc-price .amount { font-size: 24px; font-weight: var(--w-bold); color: var(--fg1); }
.product-card .pc-price .per { font-size: 13px; color: var(--fg2); }
.product-card .pc-link {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 14.5px; font-weight: var(--w-semibold); color: var(--laranja);
  padding: 11px; border: 1.5px solid var(--border); border-radius: var(--r-pill);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.product-card .pc-link:hover { background: var(--cinza); border-color: var(--border-forte); }

/* ============================================================================
   Coming-soon cards (dashed)
   ============================================================================ */
.soon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.soon-card {
  background: #fff; border: 1px dashed var(--border-forte); border-radius: 18px;
  padding: 24px; opacity: 0.9;
}
.soon-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.soon-card .sc-icon {
  width: 48px; height: 48px; border-radius: 13px; flex: none;
  background: var(--cinza); display: flex; align-items: center; justify-content: center; color: var(--fg3);
}
.soon-card .sc-icon .ic { width: 24px; height: 24px; }
.soon-card .sc-tag {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: var(--w-semibold);
  color: var(--fg2); background: var(--cinza); padding: 5px 11px; border-radius: var(--r-pill);
}
.soon-card .sc-tag .dot { width: 6px; height: 6px; border-radius: var(--r-pill); background: var(--fg3); }
.soon-card h3 { font-size: 17px; font-weight: var(--w-semibold); color: var(--fg2); margin-bottom: 8px; }
.soon-card p { font-size: var(--fs-sm); line-height: var(--lh-relaxed); color: var(--fg3); }
.soon-note { margin-top: 24px; display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--fg3); }
.soon-note .ic { width: 16px; height: 16px; color: var(--fg3); flex: none; }

/* ============================================================================
   Remuneração (dark) — value cards
   ============================================================================ */
.remun-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.remun-card {
  background: var(--grafite); border: 1px solid #2A2A2A; border-radius: 20px;
  padding: 30px 26px; display: flex; flex-direction: column; gap: 6px; position: relative;
}
.remun-card.is-featured { border: 1.5px solid var(--laranja); }
.remun-card .rc-tag {
  position: absolute; top: -12px; left: 26px;
  background: var(--laranja); color: #fff; font-size: 12px; font-weight: var(--w-bold);
  padding: 5px 12px; border-radius: var(--r-pill);
}
.remun-card .rc-head { display: flex; align-items: center; gap: 10px; color: #fff; margin-bottom: 8px; }
.remun-card .rc-head .ic { width: 22px; height: 22px; color: var(--laranja-claro); flex: none; }
.remun-card .rc-head span { font-size: 16px; font-weight: var(--w-semibold); }
.remun-card .rc-value { font-size: 56px; font-weight: var(--w-bold); letter-spacing: var(--ls-tight); line-height: 1; color: #fff; }
.remun-card .rc-per { font-size: 14px; color: var(--fg-on-dark-2); }
.remun-card .rc-foot {
  margin-top: auto; padding-top: 18px; border-top: 1px solid #2A2A2A;
  display: flex; flex-direction: column; gap: 10px;
}
.remun-card .rc-foot .rc-insurer { font-size: 13px; color: var(--fg-on-dark-2); }
.remun-card .rc-foot .rc-insurer strong { color: #fff; font-weight: var(--w-semibold); }
.remun-card .rc-logo {
  display: flex; align-items: center; justify-content: center; height: 40px;
  border: 1px solid var(--border); border-radius: 10px; background: #fff; padding: 5px 12px;
}
.remun-card .rc-logo img { max-height: 26px; max-width: 100%; object-fit: contain; }
.remun-card .rc-logo.logo-mag img { max-height: 40px; }
.remun-foot {
  margin-top: 28px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.remun-foot p { font-size: 14px; line-height: var(--lh-relaxed); color: var(--fg-on-dark-2); max-width: 620px; }
.remun-foot a.link-accent {
  font-size: 14px; font-weight: var(--w-semibold); color: var(--laranja-claro);
  display: inline-flex; align-items: center; gap: 6px;
}
.remun-foot a.link-accent .ic { width: 15px; height: 15px; }

/* ============================================================================
   Parceiras — brand wall
   ============================================================================ */
.brand-wall {
  display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap;
  background: var(--areia); border-radius: 20px; padding: 36px 28px;
}
.brand-wall__lead { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.brand-wall__lead img { height: 30px; }
.brand-wall__lead span { font-size: 12px; font-weight: var(--w-semibold); color: var(--fg2); }
.brand-wall .bw-sep { width: 1px; height: 46px; background: var(--areia-escuro); }
.brand-wall .brand-tile { width: 200px; height: 60px; }
.brand-wall .brand-tile img { max-height: 40px; }
.brand-wall .brand-tile.tile-mag img { max-height: 54px; }
.partner-tags { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.partner-tags span {
  font-size: 14px; font-weight: var(--w-medium); color: var(--fg2);
  background: var(--cinza); padding: 9px 16px; border-radius: var(--r-pill);
}
.partner-tags span strong { font-weight: var(--w-semibold); color: var(--fg1); }

/* ============================================================================
   Papéis claros — 2 cards (you / Certifica)
   ============================================================================ */
.roles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.role-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 28px; }
.role-card.is-dark { background: var(--preto); color: #fff; border-color: var(--preto); }
.role-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.role-card__head .rh-icon {
  display: inline-flex; width: 30px; height: 30px; flex: none;
  align-items: center; justify-content: center; border-radius: var(--r-pill);
  background: rgba(255,85,0,0.12);
}
.role-card__head .rh-icon img { height: 13px; }
.role-card.is-dark .role-card__head .rh-icon { background: rgba(255,255,255,0.1); }
.role-card.is-dark .role-card__head .rh-icon .ic { width: 16px; height: 16px; color: var(--laranja-claro); }
.role-card__head h3 { font-size: 19px; font-weight: var(--w-semibold); }
.role-card.is-dark .role-card__head h3 { color: #fff; }
.role-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 13px; }
.role-list li { display: flex; gap: 11px; font-size: 15px; color: var(--fg1); line-height: 1.45; }
.role-list li .ic { width: 20px; height: 20px; color: var(--laranja); flex: none; margin-top: 1px; }
.role-card.is-dark .role-list { gap: 12px; }
.role-card.is-dark .role-list li { font-size: 14.5px; color: var(--fg-on-dark-2); }
.role-card.is-dark .role-list li .ic { width: 18px; height: 18px; color: var(--laranja-claro); }
.roles-note {
  margin-top: 20px; background: var(--verde-tint); border-radius: 14px;
  padding: 16px 20px; display: flex; gap: 12px; align-items: center;
}
.roles-note .ic { width: 22px; height: 22px; color: #138A4A; flex: none; }
.roles-note p { font-size: 15px; font-weight: var(--w-medium); color: #0F6B3A; line-height: 1.45; }

/* ============================================================================
   Cadastro — form placeholder
   ============================================================================ */
.cadastro { max-width: 760px; margin: 0 auto; }
.cadastro__head { text-align: center; margin-bottom: 36px; }
.cadastro__head h2 { margin: 12px 0; }
.cadastro__head p { max-width: 520px; margin: 0 auto; }
.form-placeholder {
  background: #fff; border: 1px solid var(--border); border-radius: 22px;
  padding: 28px; box-shadow: var(--shadow-md); min-height: 300px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 14px;
}
.form-placeholder .fp-spinner {
  width: 44px; height: 44px; border-radius: var(--r-pill);
  border: 3px solid var(--areia-escuro); border-top-color: var(--laranja);
  animation: cmspin 0.8s linear infinite;
}
.form-placeholder .fp-title { font-size: 15px; color: var(--fg2); font-weight: var(--w-medium); }
.form-placeholder .fp-sub { font-size: 13px; color: var(--fg3); max-width: 380px; line-height: 1.5; }
.cadastro__note {
  margin-top: 16px; display: flex; gap: 10px; align-items: flex-start;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.cadastro__note .ic { width: 18px; height: 18px; color: var(--fg3); flex: none; margin-top: 1px; }
.cadastro__note p { font-size: 13px; line-height: 1.5; color: var(--fg3); }
@keyframes cmspin { to { transform: rotate(360deg); } }

/* ============================================================================
   FAQ
   ============================================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; font-size: var(--fs-lg); font-weight: var(--w-medium); color: var(--fg1);
}
.faq-q .faq-ic {
  width: 32px; height: 32px; border-radius: var(--r-pill); flex: none;
  background: var(--cinza); display: flex; align-items: center; justify-content: center;
  transition: background var(--dur) var(--ease);
}
.faq-q .faq-ic .ic { width: 18px; height: 18px; color: var(--preto); transition: transform var(--dur) var(--ease); }
.faq-item[open] .faq-q .faq-ic { background: var(--laranja); }
.faq-item[open] .faq-q .faq-ic .ic { color: #fff; transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height var(--dur-slow) var(--ease); }
.faq-a__inner { padding: 0 4px 26px; font-size: var(--fs-body); color: var(--fg2); line-height: var(--lh-relaxed); max-width: 700px; }

/* ============================================================================
   Final CTA (dark)
   ============================================================================ */
.final-cta { text-align: center; }
.final-cta__inner { max-width: 760px; margin: 0 auto; }
.final-cta .fc-badge {
  display: inline-flex; width: 56px; height: 56px; align-items: center; justify-content: center;
  background: rgba(255,85,0,0.16); border-radius: 18px; margin-bottom: 24px;
}
.final-cta .fc-badge img { height: 26px; }
.final-cta h2 { color: #fff; margin-bottom: 16px; }
.final-cta p { margin: 0 auto 30px; max-width: 560px; }
.final-cta .fc-foot {
  margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 14px;
  justify-content: center; align-items: center;
}
.final-cta .fc-foot span { font-size: 13.5px; color: var(--fg-on-dark-2); }
.final-cta .fc-foot .fc-logos { display: flex; gap: 8px; }
.final-cta .fc-foot .brand-tile { width: 120px; height: 34px; border-radius: 10px; padding: 5px 12px; }
.final-cta .fc-foot .brand-tile img { max-height: 22px; }
.final-cta .fc-foot .brand-tile.tile-mag img { max-height: 34px; }

/* ============================================================================
   Footer
   ============================================================================ */
.footer { background: var(--grafite); color: #fff; padding: 56px 24px 32px; }
.footer__inner { max-width: 1180px; margin: 0 auto; }
.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px;
  padding-bottom: 36px; border-bottom: 1px solid #2E2E2E;
}
.footer__brand .fb-lockup { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__brand .fb-lockup img { height: 24px; }
.footer__brand .fb-lockup span {
  border-left: 1px solid #3A3A3A; padding-left: 12px;
  font-size: 13px; font-weight: var(--w-semibold); color: var(--fg-on-dark-2);
}
.footer__brand p { margin-bottom: 18px; font-size: 14px; line-height: 1.6; color: var(--fg-on-dark-2); max-width: 340px; }
.footer__brand .fb-logos { display: flex; gap: 8px; }
.footer__brand .brand-tile { width: 120px; height: 40px; border-radius: 10px; padding: 5px 12px; }
.footer__brand .brand-tile img { max-height: 26px; }
.footer__brand .brand-tile.tile-mag img { max-height: 40px; }
.footer__col h4 {
  margin-bottom: 14px; font-size: 13px; font-weight: var(--w-semibold);
  letter-spacing: 0.04em; text-transform: uppercase; color: #fff;
}
.footer__col ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 14px; color: var(--fg-on-dark-2); transition: color var(--dur) var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__mid {
  padding: 24px 0; display: flex; gap: 18px; flex-wrap: wrap; align-items: center;
  justify-content: space-between; border-bottom: 1px solid #2E2E2E;
}
.footer__mid .fm-chip {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--fg-on-dark-2);
  background: rgba(255,255,255,0.05); padding: 8px 14px; border-radius: var(--r-pill);
}
.footer__mid .fm-chip .ic { width: 14px; height: 14px; color: var(--laranja-claro); flex: none; }
.footer__mid .fm-id { font-size: 12px; color: #7A7A7A; }
.footer__legal { margin-top: 20px; font-size: 11.5px; line-height: 1.6; color: #7A7A7A; max-width: 880px; }
.footer__copy { margin-top: 16px; font-size: 12px; color: #7A7A7A; }

/* ============================================================================
   Sticky mobile CTA
   ============================================================================ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border); padding: 12px 16px;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  transform: translateY(100%); transition: transform var(--dur-slow) var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .sc-info { line-height: 1.2; }
.sticky-cta .sc-info b { font-size: 14px; font-weight: var(--w-semibold); display: block; }
.sticky-cta .sc-info span { font-size: 12px; color: var(--fg3); }

/* ============================================================================
   Reveal on scroll
   ============================================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .form-placeholder .fp-spinner { animation: none; }
}

/* ============================================================================
   Responsive
   ============================================================================ */
@media (max-width: 1000px) {
  .nav { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; }
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .soon-grid { grid-template-columns: 1fr; }
  .remun-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .brand-wall { flex-direction: column; text-align: center; }
  .brand-wall .bw-sep { display: none; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
  .header__cta .btn { display: none; }
  .brand-lockup .brand-tag, .brand-lockup .divider { display: none; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
  .remun-card .rc-value { font-size: 48px; }
}
@media (max-width: 380px) {
  .brand-tile { width: 100%; }
}
