/* ============================================================
   NEXUM CONSÓRCIOS — Design System & Landing Page Styles
   Versão: 1.0
   ============================================================
   COMO PERSONALIZAR:
   - Cores: edite as variáveis em :root
   - Fonte: edite --font-primary e --font-display
   - Logo: substitua o SVG inline no HTML
   ============================================================ */

/* ===================== DESIGN TOKENS ===================== */
:root {
  /* === BRAND COLORS — Nexum Identity === */
  /* TROCAR AQUI se receber paleta oficial revisada */
  --brand-900: #080E1A;     /* fundo mais escuro */
  --brand-800: #0B1220;     /* fundo principal */
  --brand-750: #0F1B2E;     /* fundo de cards */
  --brand-700: #142848;     /* hover states */
  --brand-600: #1A3460;     /* bordas sutis */
  --brand-500: #1DD4C8;     /* teal — acento principal Nexum */
  --brand-400: #3DDDD2;     /* teal claro — hover */
  --brand-300: #7EEAE5;     /* teal muito claro */

  /* === CREAM / LIGHT VARIANT === */
  --cream: #EDE8DB;         /* fundo cream (versão clara) */
  --cream-dark: #D9D2C3;    /* cream mais escura */

  /* === TEXT === */
  --text-100: #F5F7FB;
  --text-200: #E2E8F0;
  --text-300: #C7D0E0;
  --text-400: #94A3B8;
  --muted-500: #64748B;

  /* === FEEDBACK === */
  --danger-500: #EF4444;
  --danger-100: rgba(239,68,68,.15);
  --ok-500: #22C55E;
  --ok-100: rgba(34,197,94,.15);
  --warn-500: #F59E0B;

  /* === BORDERS & SURFACES === */
  --border: rgba(255,255,255,.08);
  --border-hover: rgba(29,212,200,.3);
  --surface: rgba(255,255,255,.04);
  --surface-hover: rgba(29,212,200,.06);
  --glass: rgba(11,18,32,.7);

  /* === SHAPES === */
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;

  /* === SHADOWS === */
  --shadow-lg: 0 20px 60px rgba(0,0,0,.4);
  --shadow-md: 0 8px 32px rgba(0,0,0,.25);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.2);
  --shadow-teal: 0 8px 32px rgba(29,212,200,.2);

  /* === TYPOGRAPHY === */
  --font-display: 'Inter', system-ui, sans-serif;
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;

  /* === SPACING === */
  --space-xs: 4px; --space-sm: 8px; --space-md: 16px;
  --space-lg: 24px; --space-xl: 32px; --space-2xl: 48px;
  --space-3xl: 64px; --space-4xl: 96px;

  /* === TRANSITIONS === */
  --transition: .22s cubic-bezier(.4,0,.2,1);
  --transition-slow: .4s cubic-bezier(.4,0,.2,1);
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-primary);
  background: var(--brand-800);
  color: var(--text-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }
:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 3px; }


body.is-loading {
  overflow: hidden;
}

/* ===================== PAGE LOADER — N REVEAL ===================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080E1A;
  opacity: 1;
  visibility: visible;
  transition: opacity .65s cubic-bezier(.4,0,.2,1), visibility .65s cubic-bezier(.4,0,.2,1);
}
.page-loader::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(29,212,200,.055) 0%, transparent 70%);
  pointer-events: none;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader__stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pla-svg {
  width: clamp(80px, 16vw, 112px);
  height: auto;
  overflow: visible;
}

/*
  Técnica: opacity:0 no keyframe "from" + animation-fill-mode:both
  garante que os shapes fiquem COMPLETAMENTE invisíveis durante o delay.
  Funciona em Chrome, Firefox e Safari — desktop e mobile — sem clipPath.

  transform-box:fill-box ancora o transform-origin ao bounding box
  do próprio elemento, independente da posição no SVG.
*/

/* Pilar esquerdo — sobe de baixo para cima */
.pla-shape-left {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: pla-rise .52s cubic-bezier(.4,0,.2,1) .05s both;
}

/* Pilar direito — desce de cima para baixo */
.pla-shape-right {
  transform-box: fill-box;
  transform-origin: center top;
  animation: pla-drop .52s cubic-bezier(.4,0,.2,1) .2s both;
}

/* Diagonal teal — desce depois dos pilares */
.pla-shape-diag {
  transform-box: fill-box;
  transform-origin: center top;
  animation: pla-drop .44s cubic-bezier(.4,0,.2,1) .6s both;
}

@keyframes pla-rise {
  from { opacity: 0; transform: scaleY(0); }
  to   { opacity: 1; transform: scaleY(1); }
}
@keyframes pla-drop {
  from { opacity: 0; transform: scaleY(0); }
  to   { opacity: 1; transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  .pla-shape-left,
  .pla-shape-right,
  .pla-shape-diag { animation: none !important; opacity: 1 !important; transform: none !important; }
  .page-loader { transition: none !important; }
}

/* ===================== CONTAINER ===================== */

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--space-xl); }
@media (max-width: 768px) { .container { padding: 0 var(--space-md); } }

/* ===================== TYPOGRAPHY ===================== */
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-500);
  background: rgba(29,212,200,.1);
  border: 1px solid rgba(29,212,200,.25);
  border-radius: 99px;
  padding: 4px 14px;
  margin-bottom: var(--space-md);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-100);
  margin-bottom: var(--space-md);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-300);
  max-width: 580px;
}
.section-header { text-align: center; margin-bottom: var(--space-3xl); }
.section-header .section-sub { margin: 0 auto; }
.text-teal { color: var(--brand-500); }

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  background: var(--brand-500);
  color: var(--brand-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid var(--brand-500);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--brand-400);
  border-color: var(--brand-400);
  transform: translateY(-1px);
  box-shadow: var(--shadow-teal);
}
.btn-primary:active { transform: translateY(0); }
.btn-sm { padding: 10px 20px; font-size: .85rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  background: transparent;
  color: var(--text-200);
  font-size: .95rem;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--brand-500); color: var(--brand-500); background: var(--surface-hover); }

.btn-text {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none;
  color: var(--text-400); font-size: .88rem;
  padding: 8px 0;
  transition: var(--transition);
}
.btn-text:hover { color: var(--brand-500); }

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--brand-750);
  border-top: 1px solid var(--border);
  padding: var(--space-md) 0;
  transform: translateY(100%);
  transition: var(--transition-slow);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-content {
  max-width: 1200px; margin: 0 auto; padding: 0 var(--space-xl);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-xl);
  flex-wrap: wrap;
}
.cookie-content p { font-size: .9rem; color: var(--text-300); }
.cookie-link { color: var(--brand-500); text-decoration: underline; }
.cookie-actions { display: flex; gap: var(--space-sm); flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--brand-500); color: var(--brand-900);
  font-weight: 600; font-size: .85rem; padding: 8px 18px;
  border-radius: var(--radius-sm); transition: var(--transition);
}
.btn-cookie-accept:hover { background: var(--brand-400); }
.btn-cookie-reject {
  background: transparent; color: var(--text-400);
  font-size: .85rem; padding: 8px 14px;
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  transition: var(--transition);
}
.btn-cookie-reject:hover { color: var(--text-100); border-color: var(--text-400); }

/* ===================== HEADER ===================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 110px;
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: var(--transition);
}
.header.scrolled { background: #ffffff; box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.header-inner {
  height: 110px; display: flex; align-items: center;
  justify-content: space-between; gap: var(--space-lg);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img-wrap { display: flex; align-items: center; }
.logo-img { height: 102px; width: auto; display: block; object-fit: contain; }
.logo-mark { width: 32px; height: 28px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; gap: 0; line-height: 1; }
.logo-brand { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; letter-spacing: .06em; color: var(--text-100); }
.logo-sub { font-size: .5rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-500); margin-top: 2px; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: .875rem; font-weight: 500;
  color: #2D3E55;
  padding: 6px 12px; border-radius: var(--radius-xs);
  transition: var(--transition);
}
.nav-link:hover { color: var(--brand-500); background: rgba(29,212,200,.07); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #1A2840; border-radius: 2px; transition: var(--transition); }

.header-ctas { display: flex; align-items: center; gap: var(--space-sm); flex-shrink: 0; }
.btn-chat-header {
  display: flex; align-items: center; gap: 6px;
  font-size: .85rem; color: var(--text-300);
  padding: 8px 12px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); transition: var(--transition);
}
.btn-chat-header:hover { color: var(--brand-500); border-color: var(--border-hover); }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(29,212,200,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(29,212,200,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(29,212,200,.12) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl); align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 500; letter-spacing: .05em;
  color: var(--brand-500);
  background: rgba(29,212,200,.08); border: 1px solid rgba(29,212,200,.2);
  border-radius: 99px; padding: 6px 16px;
  margin-bottom: var(--space-lg);
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-500);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: var(--space-lg);
}
.hero-subtitle {
  font-size: 1.1rem; color: var(--text-300);
  margin-bottom: var(--space-xl);
  max-width: 480px; line-height: 1.7;
}
.hero-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--space-xl); }
.hero-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; color: var(--text-200); }
.hero-actions { display: flex; align-items: center; gap: var(--space-md); flex-wrap: wrap; }

/* Hero Visual / Card */
.hero-visual { position: relative; }
.hero-card {
  background: var(--brand-750);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}
.hero-card-header {
  display: flex; align-items: center; gap: 10px;
  font-size: .8rem; color: var(--text-400);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-lg);
}
.hc-dot-green { width: 8px; height: 8px; border-radius: 50%; background: var(--ok-500); animation: pulse-dot 2s ease-in-out infinite; }
.hero-card-body { display: flex; flex-direction: column; gap: 12px; }
.hc-row { display: flex; justify-content: space-between; align-items: center; gap: var(--space-md); }
.hc-label { font-size: .83rem; color: var(--text-400); }
.hc-value { font-size: .9rem; font-weight: 500; color: var(--text-200); }
.hc-highlight { color: var(--brand-500); font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.hc-divider { height: 1px; background: var(--border); }
.hc-status { display: flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--ok-500); }
.hc-dot-inline { width: 6px; height: 6px; border-radius: 50%; background: var(--ok-500); }

.hero-stats { display: flex; gap: var(--space-md); margin-top: var(--space-lg); }
.hero-stat {
  flex: 1; text-align: center;
  background: var(--brand-750); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: var(--space-md);
}
.hs-number { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--brand-500); }
.hs-label { font-size: .75rem; color: var(--text-400); }

/* ===================== AD CONGRUENCE ===================== */
.ad-congruence {
  background: linear-gradient(135deg, rgba(29,212,200,.08) 0%, transparent 60%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-2xl) 0;
}
.ad-congruence-inner {
  display: flex; align-items: flex-start; gap: var(--space-xl);
  background: var(--brand-750);
  border: 1px solid rgba(29,212,200,.15);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
}
.ac-icon { flex-shrink: 0; color: var(--brand-500); margin-top: 2px; }
.ac-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; margin-bottom: var(--space-sm); }
.ac-text { color: var(--text-300); margin-bottom: var(--space-lg); max-width: 680px; line-height: 1.7; }

/* ===================== SOCIAL PROOF ===================== */
.social-proof { padding: var(--space-4xl) 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-lg); margin-bottom: var(--space-3xl); }
.testimonial-card {
  background: var(--brand-750); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-xl);
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.tc-featured { border-color: rgba(29,212,200,.25); background: linear-gradient(135deg, var(--brand-750) 0%, rgba(29,212,200,.05) 100%); }
.tc-stars { color: var(--brand-500); font-size: 1rem; margin-bottom: var(--space-md); letter-spacing: 2px; }
.tc-quote { font-size: .93rem; color: var(--text-300); line-height: 1.7; margin-bottom: var(--space-lg); font-style: italic; }
.tc-footer { display: flex; align-items: center; gap: 12px; }
.tc-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--brand-700); border: 2px solid rgba(29,212,200,.3); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: .8rem; color: var(--brand-500); flex-shrink: 0; }
.tc-name { display: block; font-weight: 600; font-size: .9rem; }
.tc-modal { font-size: .78rem; color: var(--text-400); }

/* Guidance */
.guidance-block { background: var(--brand-750); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-2xl); }
.guidance-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; text-align: center; margin-bottom: var(--space-2xl); }
.guidance-steps { display: flex; align-items: flex-start; gap: 0; }
.gs-step { flex: 1; text-align: center; padding: 0 var(--space-md); }
.gs-connector { width: 40px; height: 2px; background: linear-gradient(90deg, transparent, var(--brand-500), transparent); flex-shrink: 0; margin-top: 28px; }
.gs-number { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: rgba(29,212,200,.1); border: 2px solid rgba(29,212,200,.3); font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--brand-500); margin: 0 auto var(--space-md); }
.gs-title { font-weight: 600; font-size: .95rem; margin-bottom: var(--space-sm); }
.gs-desc { font-size: .85rem; color: var(--text-400); line-height: 1.6; }

/* ===================== MODALIDADES ===================== */
.modalidades { padding: var(--space-4xl) 0; background: var(--brand-900); }
.modal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-lg); }
.modal-card-outros { grid-column: 1 / -1; max-width: 380px; margin: 0 auto; width: 100%; }
.modal-card {
  background: var(--brand-750); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-xl);
  transition: var(--transition); cursor: default;
}
.modal-card:hover, .modal-card:focus { border-color: var(--border-hover); background: linear-gradient(135deg, var(--brand-750) 0%, rgba(29,212,200,.04) 100%); transform: translateY(-2px); outline: none; }
.mc-icon { color: var(--brand-500); margin-bottom: var(--space-md); }
.mc-title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: var(--space-lg); }
.mc-section { margin-bottom: var(--space-md); }
.mc-label { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-500); margin-bottom: 4px; }
.mc-section p { font-size: .87rem; color: var(--text-300); line-height: 1.6; }
.mc-obs { display: flex; align-items: flex-start; gap: 6px; font-size: .8rem; color: var(--text-400); background: rgba(255,255,255,.03); border-radius: var(--radius-xs); padding: 10px 12px; margin-top: var(--space-md); line-height: 1.5; }
.mc-obs svg { flex-shrink: 0; margin-top: 1px; }

/* ===================== BENEFÍCIOS ===================== */
.beneficios { padding: var(--space-4xl) 0; }
.ben-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-lg); margin-bottom: var(--space-xl); }
.ben-card { background: var(--brand-750); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-xl); transition: var(--transition); }
.ben-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.ben-icon { color: var(--brand-500); margin-bottom: var(--space-md); }
.ben-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: var(--space-sm); }
.ben-desc { font-size: .87rem; color: var(--text-300); line-height: 1.65; }
.transparency-note {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(245,158,11,.06); border: 1px solid rgba(245,158,11,.2);
  border-radius: var(--radius-md); padding: var(--space-lg);
}
.transparency-note svg { flex-shrink: 0; color: var(--warn-500); margin-top: 2px; }
.transparency-note p { font-size: .87rem; color: var(--text-300); line-height: 1.65; }

/* ===================== COMPARATIVO ===================== */
.comparativo { padding: var(--space-4xl) 0; background: var(--brand-900); }
.cmp-table-wrapper { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.cmp-table { width: 100%; border-collapse: collapse; }
.cmp-table th { background: var(--brand-750); padding: var(--space-md) var(--space-lg); text-align: left; font-family: var(--font-display); font-size: .85rem; font-weight: 700; letter-spacing: .04em; color: var(--text-300); border-bottom: 1px solid var(--border); }
.cmp-col-cons { color: var(--brand-500) !important; }
.cmp-col-fin { color: var(--text-400) !important; }
.cmp-table td { padding: var(--space-md) var(--space-lg); font-size: .9rem; border-bottom: 1px solid rgba(255,255,255,.04); }
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.cmp-table tr:hover td { background: var(--surface-hover); }
.cmp-table td:first-child { color: var(--text-300); font-weight: 500; }
.cmp-yes { color: var(--ok-500); font-weight: 500; }
.cmp-no { color: var(--danger-500); }
.cmp-neutral { color: var(--warn-500); }
.cmp-note { font-size: .78rem; color: var(--text-400); margin-top: var(--space-md); padding: 0 var(--space-sm); }

/* ===================== COMO FUNCIONA ===================== */
.como-funciona { padding: var(--space-4xl) 0; }
.cf-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: var(--space-3xl); }
.cf-step { display: flex; align-items: flex-start; gap: var(--space-xl); padding: var(--space-lg) 0; border-bottom: 1px solid var(--border); }
.cf-step:last-child { border-bottom: none; }
.cf-step-num { flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; background: rgba(29,212,200,.08); border: 2px solid rgba(29,212,200,.25); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--brand-500); }
.cf-step-content h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.cf-step-content p { font-size: .9rem; color: var(--text-300); line-height: 1.65; }

/* Lances */
.lances-block { background: var(--brand-750); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-2xl); }
.lances-title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; text-align: center; margin-bottom: var(--space-xl); }
.lances-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-lg); }
.lance-card { background: var(--brand-900); border-radius: var(--radius-md); padding: var(--space-lg); border: 1px solid var(--border); }
.lc-badge { display: inline-block; font-size: .75rem; font-weight: 700; color: var(--brand-500); background: rgba(29,212,200,.1); border: 1px solid rgba(29,212,200,.2); border-radius: 99px; padding: 3px 12px; margin-bottom: var(--space-sm); }
.lc-badge-alt { color: var(--warn-500); background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.2); }
.lance-card p { font-size: .87rem; color: var(--text-300); line-height: 1.65; }

/* ===================== EDUCAÇÃO / FAQ (ACCORDION) ===================== */
.educacao { padding: var(--space-4xl) 0; background: var(--brand-900); }
.faq { padding: var(--space-4xl) 0; }
.accordion { display: flex; flex-direction: column; gap: 2px; }
.acc-item { border-radius: var(--radius-md); overflow: hidden; }
.acc-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-md); text-align: left;
  background: var(--brand-750); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: var(--space-lg) var(--space-xl);
  font-size: .97rem; font-weight: 500; color: var(--text-200);
  transition: var(--transition); cursor: pointer;
}
.acc-trigger:hover, .acc-trigger[aria-expanded="true"] { border-color: var(--border-hover); background: linear-gradient(135deg, var(--brand-750), rgba(29,212,200,.05)); color: var(--text-100); }
.acc-trigger[aria-expanded="true"] .acc-icon { transform: rotate(180deg); color: var(--brand-500); }
.acc-icon { flex-shrink: 0; transition: var(--transition); color: var(--text-400); }
.acc-content { overflow: hidden; max-height: 0; transition: max-height .35s cubic-bezier(.4,0,.2,1); }
.acc-content[data-open] { max-height: 600px; }
.acc-content > * { padding: var(--space-lg) var(--space-xl) var(--space-xl); }
.acc-content p { font-size: .9rem; color: var(--text-300); line-height: 1.7; margin-bottom: var(--space-sm); }
.acc-content p:last-child { margin-bottom: 0; }

/* ===================== FORMULÁRIO MULTI-STEP ===================== */
.simulacao { padding: var(--space-4xl) 0; background: var(--brand-900); }
.form-wrapper { max-width: 720px; margin: 0 auto; }

/* Progress */
.form-progress { margin-bottom: var(--space-2xl); }
.progress-bar-track { height: 4px; background: rgba(255,255,255,.08); border-radius: 99px; margin-bottom: var(--space-lg); overflow: hidden; }
.progress-bar-fill { height: 100%; background: var(--brand-500); border-radius: 99px; transition: width .4s cubic-bezier(.4,0,.2,1); }
.progress-steps { display: flex; justify-content: space-between; }
.ps-step { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.ps-dot { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--border); background: var(--brand-800); color: var(--text-400); font-family: var(--font-display); font-weight: 700; font-size: .85rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.ps-step.active .ps-dot { border-color: var(--brand-500); background: rgba(29,212,200,.1); color: var(--brand-500); }
.ps-step.done .ps-dot { border-color: var(--brand-500); background: var(--brand-500); color: var(--brand-900); }
.ps-label { font-size: .72rem; font-weight: 500; color: var(--text-400); transition: var(--transition); }
.ps-step.active .ps-label { color: var(--brand-500); }

/* Form Steps */
.multi-step-form {
  background: var(--brand-750); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}
.form-step { display: none; }
.form-step.active { display: block; animation: fadeSlide .3s cubic-bezier(.4,0,.2,1); }
@keyframes fadeSlide { from{opacity:0;transform:translateX(16px)} to{opacity:1;transform:translateX(0)} }
.step-legend { display: flex; flex-direction: column; gap: 4px; margin-bottom: var(--space-xl); padding: 0; border: none; }
.step-num { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-500); }
.step-legend { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text-100); }

/* Form Fields */
.form-group { margin-bottom: var(--space-lg); }
.form-label { display: block; font-size: .87rem; font-weight: 600; color: var(--text-200); margin-bottom: 8px; }
.req { color: var(--brand-500); }
.optional { font-size: .78rem; font-weight: 400; color: var(--text-400); }
.form-input {
  width: 100%; background: rgba(255,255,255,.04);
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  padding: 13px 16px; color: var(--text-100); font-size: .95rem;
  transition: var(--transition);
  -webkit-appearance: none; appearance: none;
}
.form-input::placeholder { color: var(--text-400); }
.form-input:focus { outline: none; border-color: var(--brand-500); background: rgba(29,212,200,.04); }
.form-input.error { border-color: var(--danger-500); background: var(--danger-100); }
.form-select { cursor: pointer; }
.form-select option { background: var(--brand-750); color: var(--text-100); }
.form-textarea { resize: vertical; min-height: 90px; }
.form-error { display: block; font-size: .78rem; color: var(--danger-500); margin-top: 4px; min-height: 18px; }
.form-hint { display: block; font-size: .78rem; color: var(--text-400); margin-top: 4px; }
.form-link { color: var(--brand-500); text-decoration: underline; }

/* Chips */
.chips-grid { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-sm); }
.chip-label { cursor: pointer; }
.chip-input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 99px;
  border: 1.5px solid var(--border); font-size: .87rem; font-weight: 500;
  color: var(--text-300); background: rgba(255,255,255,.04);
  transition: var(--transition); user-select: none;
}
.chip-input:checked + .chip { border-color: var(--brand-500); color: var(--brand-500); background: rgba(29,212,200,.1); }
.chip-input:focus-visible + .chip { outline: 2px solid var(--brand-500); outline-offset: 3px; }
.chip:hover { border-color: rgba(29,212,200,.4); }

/* Radio */
.radio-group { display: flex; flex-direction: column; gap: var(--space-sm); }
.radio-label { display: flex; align-items: center; gap: 12px; cursor: pointer; font-size: .9rem; color: var(--text-200); }
.radio-input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-custom { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; position: relative; transition: var(--transition); }
.radio-input:checked + .radio-custom { border-color: var(--brand-500); background: rgba(29,212,200,.1); }
.radio-input:checked + .radio-custom::after { content: ''; position: absolute; inset: 4px; border-radius: 50%; background: var(--brand-500); }
.radio-input:focus-visible + .radio-custom { outline: 2px solid var(--brand-500); outline-offset: 3px; }

/* LGPD */
.lgpd-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.lgpd-input { position: absolute; opacity: 0; width: 0; height: 0; }
.lgpd-custom { width: 20px; height: 20px; border-radius: var(--radius-xs); border: 2px solid var(--border); flex-shrink: 0; margin-top: 2px; position: relative; transition: var(--transition); }
.lgpd-input:checked + .lgpd-custom { border-color: var(--brand-500); background: var(--brand-500); }
.lgpd-input:checked + .lgpd-custom::after { content: ''; position: absolute; left: 4px; top: 1px; width: 8px; height: 12px; border: 2px solid var(--brand-900); border-top: none; border-left: none; transform: rotate(40deg); }
.lgpd-input:focus-visible + .lgpd-custom { outline: 2px solid var(--brand-500); outline-offset: 3px; }
.lgpd-label span:last-child { font-size: .87rem; color: var(--text-300); line-height: 1.6; }

/* Conditional fields */
.conditional-field { animation: fadeSlide .25s ease; }

/* Form Navigation */
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: var(--space-xl); padding-top: var(--space-lg); border-top: 1px solid var(--border); }

/* Success Screen */
.form-success { text-align: center; padding: var(--space-2xl) 0; animation: fadeSlide .35s ease; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(29,212,200,.1); border: 2px solid rgba(29,212,200,.3); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-lg); }
.success-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; margin-bottom: var(--space-sm); }
.success-sub { font-size: .95rem; color: var(--text-300); margin-bottom: var(--space-xl); }
.success-summary { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-lg); text-align: left; margin-bottom: var(--space-xl); font-size: .88rem; color: var(--text-300); line-height: 1.9; }
.success-actions { display: flex; justify-content: center; align-items: center; gap: var(--space-md); flex-wrap: wrap; }

/* ===================== FOOTER ===================== */
.footer { background: var(--brand-900); border-top: 1px solid var(--border); padding: var(--space-3xl) 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: var(--space-3xl); padding-bottom: var(--space-3xl); }
.logo-footer .logo-mark { width: 28px; height: 24px; }
.logo-img-footer { height: 44px; width: auto; }
.footer-tagline { font-size: .9rem; color: var(--text-300); margin: var(--space-md) 0; max-width: 360px; line-height: 1.65; }
.footer-lgpd { font-size: .8rem; color: var(--text-400); line-height: 1.65; }
.footer-link { color: var(--text-400); transition: var(--transition); }
.footer-link:hover { color: var(--brand-500); }
.footer-links { display: flex; gap: var(--space-2xl); }
.footer-col-title { font-family: var(--font-display); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-400); margin-bottom: var(--space-md); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .88rem; }
.footer-bottom { border-top: 1px solid var(--border); padding: var(--space-lg) 0; }
.footer-disclaimer { font-size: .75rem; color: var(--text-400); line-height: 1.65; margin-bottom: var(--space-sm); }
.footer-copy { font-size: .78rem; color: var(--muted-500); }

/* ===================== CHAT WIDGET ===================== */
.chat-toggle {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--brand-500); color: var(--brand-900);
  box-shadow: var(--shadow-teal);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); border: none;
}
.chat-toggle:hover { background: var(--brand-400); transform: scale(1.05); }
.chat-badge {
  position: absolute; top: -4px; right: -4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--danger-500); color: #fff;
  font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--brand-800);
  animation: badge-pop .4s cubic-bezier(.175,.885,.32,1.275);
}
@keyframes badge-pop { from{transform:scale(0)} to{transform:scale(1)} }

.chat-widget {
  position: fixed; bottom: 100px; right: 28px; z-index: 199;
  width: 360px; max-height: 540px;
  background: var(--brand-750); border: 1px solid var(--border);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  opacity: 0; transform: scale(.9) translateY(16px);
  pointer-events: none; transition: var(--transition-slow);
}
.chat-widget.open { opacity: 1; transform: scale(1) translateY(0); pointer-events: all; }
.chat-header { display: flex; justify-content: space-between; align-items: center; padding: var(--space-md) var(--space-lg); border-bottom: 1px solid var(--border); }
.chat-header-info { display: flex; align-items: center; gap: 12px; }
.chat-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--brand-900); border: 1.5px solid rgba(29,212,200,.3); display: flex; align-items: center; justify-content: center; }
.chat-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: .9rem; }
.chat-status { display: flex; align-items: center; gap: 5px; font-size: .72rem; color: var(--text-400); }
.chat-online-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ok-500); }
.chat-close { color: var(--text-400); padding: 4px; border-radius: var(--radius-xs); transition: var(--transition); }
.chat-close:hover { color: var(--text-100); background: rgba(255,255,255,.06); }

.chat-messages { flex: 1; overflow-y: auto; padding: var(--space-md); display: flex; flex-direction: column; gap: var(--space-sm); min-height: 200px; }
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.chat-msg { max-width: 85%; padding: 10px 14px; border-radius: var(--radius-md); font-size: .88rem; line-height: 1.55; animation: msg-in .25s ease; }
@keyframes msg-in { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.chat-msg.bot { background: rgba(255,255,255,.06); color: var(--text-200); border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 4px; }
.chat-msg.user { background: var(--brand-500); color: var(--brand-900); font-weight: 500; align-self: flex-end; border-radius: var(--radius-md) var(--radius-md) 4px var(--radius-md); }
.chat-typing { display: flex; gap: 4px; padding: 10px 14px; background: rgba(255,255,255,.06); border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 4px; width: fit-content; }
.chat-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--text-400); animation: typing-dot .9s ease infinite; }
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing-dot { 0%,60%,100%{transform:translateY(0);opacity:.4} 30%{transform:translateY(-5px);opacity:1} }

.chat-suggestions { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 var(--space-md) var(--space-sm); }
.chat-suggestion {
  font-size: .77rem; padding: 5px 12px; border-radius: 99px;
  border: 1px solid var(--border); color: var(--text-300);
  background: rgba(255,255,255,.04); cursor: pointer; transition: var(--transition);
}
.chat-suggestion:hover { border-color: var(--brand-500); color: var(--brand-500); }

.chat-input-area { display: flex; align-items: center; gap: var(--space-sm); padding: var(--space-sm) var(--space-md); border-top: 1px solid var(--border); }
.chat-input { flex: 1; background: rgba(255,255,255,.06); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 10px 14px; color: var(--text-100); font-size: .88rem; transition: var(--transition); }
.chat-input::placeholder { color: var(--text-400); }
.chat-input:focus { outline: none; border-color: var(--brand-500); }
.chat-send { width: 38px; height: 38px; border-radius: var(--radius-sm); background: var(--brand-500); color: var(--brand-900); display: flex; align-items: center; justify-content: center; transition: var(--transition); flex-shrink: 0; }
.chat-send:hover { background: var(--brand-400); }

.chat-footer-cta { padding: var(--space-sm) var(--space-md) var(--space-md); }
.chat-sim-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 8px; background: rgba(29,212,200,.08); border: 1px solid rgba(29,212,200,.2); border-radius: var(--radius-sm); font-size: .8rem; font-weight: 600; color: var(--brand-500); transition: var(--transition); }
.chat-sim-btn:hover { background: rgba(29,212,200,.15); }

/* ===================== TOAST ===================== */
.toast {
  position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--brand-750); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 14px 24px; font-size: .9rem; color: var(--text-200);
  box-shadow: var(--shadow-md); z-index: 9998;
  opacity: 0; transition: var(--transition); pointer-events: none;
  max-width: 90vw; text-align: center;
}
.toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .hero-visual { display: none; }
  .hero-title { font-size: 2.6rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .modal-grid { grid-template-columns: repeat(2,1fr); }
  .modal-card-outros { grid-column: auto; max-width: none; }
  .ben-grid { grid-template-columns: repeat(2,1fr); }
  .lances-grid { grid-template-columns: 1fr; }
  .guidance-steps { flex-direction: column; align-items: flex-start; }
  .gs-connector { width: 2px; height: 24px; background: linear-gradient(180deg, transparent, var(--brand-500), transparent); align-self: flex-start; margin-left: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-2xl); }
}

@media (max-width: 768px) {
  .header-ctas .btn-chat-header { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 110px 0 0 0;
    background: var(--brand-900); flex-direction: column; align-items: flex-start;
    padding: var(--space-xl); gap: var(--space-sm);
    transform: translateX(100%); transition: var(--transition-slow);
    border-top: 1px solid var(--border);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1rem; padding: 12px var(--space-md); width: 100%; }
  .hero { padding: 140px 0 60px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .modal-grid { grid-template-columns: 1fr; }
  .ben-grid { grid-template-columns: 1fr; }
  .cmp-table { font-size: .82rem; }
  .cmp-table th, .cmp-table td { padding: var(--space-sm) var(--space-md); }
  .multi-step-form { padding: var(--space-lg); }
  .footer-links { flex-direction: column; gap: var(--space-xl); }
  .chat-widget { width: calc(100vw - 32px); right: 16px; bottom: 90px; }
  .chat-toggle { bottom: 20px; right: 20px; }
  .progress-steps { gap: 0; }
  .ps-label { font-size: .65rem; }
  .success-actions { flex-direction: column; }
  .ac-content { flex-direction: column; }
  .ad-congruence-inner { flex-direction: column; gap: var(--space-md); padding: var(--space-lg); }
  .guidance-block { padding: var(--space-lg); }
}

/* ===================== FORMULÁRIO SIMPLES ===================== */
.form-simples-wrapper {
  max-width: 520px;
  margin: 0 auto;
  background: var(--brand-750);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-2xl);
}
.btn-form-simples {
  width: 100%;
  justify-content: center;
  gap: 10px;
  font-size: 1.05rem;
  padding: 16px 24px;
  margin-top: var(--space-sm);
}
.form-simples-lgpd {
  text-align: center;
  font-size: .78rem;
  color: var(--text-400);
  margin-top: var(--space-md);
  line-height: 1.6;
}
.form-simples-lgpd a { color: var(--brand-500); }
@media (max-width: 640px) {
  .form-simples-wrapper { padding: var(--space-xl) var(--space-md); }
}

/* ===================== HERO FORM SECTION ===================== */
.hero-form-section {
  background: var(--brand-750);
  border-bottom: 1px solid var(--border);
  padding: var(--space-3xl) 0;
}
.hero-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.hero-form-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-500);
  background: rgba(29,212,200,.1);
  border: 1px solid rgba(29,212,200,.2);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.hero-form-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-100);
  line-height: 1.25;
  margin-bottom: 14px;
}
.hero-form-sub {
  font-size: .95rem;
  color: var(--text-300);
  line-height: 1.7;
}
.hero-form-box {
  background: var(--brand-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-xl);
}
@media (max-width: 900px) {
  .hero-form-inner { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .hero-form-text { text-align: center; }
}
@media (max-width: 640px) {
  .hero-form-box { padding: var(--space-lg) var(--space-md); }
}

/* ===================== PARCEIROS ===================== */
.parceiros {
  background: var(--brand-900);
  border-bottom: 1px solid var(--border);
  padding: var(--space-2xl) 0;
}
.parceiros-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}
.parceiros-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-400);
  text-align: center;
}
.parceiros-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}
.parceiro-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.parceiro-item:hover { transform: scale(1.07); }
.parceiro-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
}
@media (max-width: 480px) {
  .parceiros-logos { gap: var(--space-xl); }
  .parceiro-logo { width: 60px; height: 60px; }
}

/* ===================== REFATORAÇÃO V16 — NOVOS ESTILOS ===================== */

/* Hero refatorado — layout com form integrado */
.hero-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
  padding-top: 40px;
}
.hero-copy { padding-top: var(--space-xl); }

/* Parceiros inline no hero */
.hero-parceiros {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-parceiros-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-400);
  flex-shrink: 0;
  white-space: nowrap;
}
.hero-parceiros-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
/* Wrapper círculo — mesmo tamanho e forma para todos os logos */
.hero-parceiros-logos picture {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-parceiros-logos picture:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.5);
}
.hp-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  filter: none;
  transition: none;
}
.hp-logo-bradesco,
.hp-logo-porto { height: 100% !important; width: 100% !important; border-radius: 0 !important; }

/* Form card no hero */
.hero-form-card {
  background: var(--brand-750);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  position: sticky;
  top: 118px;
  box-shadow: var(--shadow-lg);
}
.hfc-header { margin-bottom: var(--space-xl); }
.hfc-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-500);
  background: rgba(29,212,200,.1);
  border: 1px solid rgba(29,212,200,.2);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 12px;
}
.hfc-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 8px;
  line-height: 1.25;
}
.hfc-sub { font-size: .87rem; color: var(--text-300); line-height: 1.6; }

.btn-form-submit {
  width: 100%;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  padding: 15px 20px;
  margin-top: var(--space-sm);
}
.form-lgpd-note {
  text-align: center;
  font-size: .75rem;
  color: var(--text-400);
  margin-top: var(--space-md);
  line-height: 1.6;
}
.form-lgpd-note a { color: var(--brand-500); }

/* Como funciona — CTA block */
.cf-cta-block {
  text-align: center;
  margin-top: var(--space-3xl);
}

/* CTA final section */
.cta-final {
  background: linear-gradient(135deg, var(--brand-750) 0%, var(--brand-900) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-4xl) 0;
}
.cta-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}
.cta-final-copy { flex: 1; min-width: 260px; }
.cta-final-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: var(--space-sm);
  line-height: 1.25;
}
.cta-final-sub { font-size: .95rem; color: var(--text-300); line-height: 1.7; }
.cta-final-btn {
  flex-shrink: 0;
  gap: 10px;
  padding: 16px 28px;
  font-size: 1rem;
  white-space: nowrap;
}

/* CTA fixo mobile */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--brand-900);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  z-index: 150;
}
.mobile-cta-btn {
  width: 100%;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: .95rem;
}

/* ===================== RESPONSIVIDADE REFATORADA ===================== */
@media (max-width: 1024px) {
  .hero-form-layout { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .hero-form-card { position: static; }
  .hero-copy { padding-top: 0; }
  .cta-final-inner { flex-direction: column; text-align: center; }
  .cta-final-btn { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
  /* Mostrar CTA fixo mobile */
  .mobile-cta-bar { display: block; }
  /* Dar espaço ao CTA fixo */
  .footer-bottom { padding-bottom: 80px; }
  /* Ajustar chat toggle para não colidir */
  .chat-toggle { bottom: 76px; right: 16px; }
  .chat-widget { bottom: 148px; right: 16px; width: calc(100vw - 32px); }
  /* Form card */
  .hero-form-card { padding: var(--space-xl) var(--space-md); }
  /* Modal grid */
  .modal-grid { grid-template-columns: 1fr; }
  /* Ben grid */
  .ben-grid { grid-template-columns: 1fr; }
  /* Hero parceiros */
  .hero-parceiros { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
  /* CTA final */
  .cta-final { padding: var(--space-2xl) 0; }
}

@media (max-width: 640px) {
  .hero-form-card { padding: var(--space-lg) var(--space-md); }
  .hero-parceiros-logos picture { width: 40px; height: 40px; padding: 0; border-radius: 50%; }
}

/* ============================================================
   NEXUM v2 — NOVOS COMPONENTES: MONDAY FORM + PROCESSO
   ============================================================ */

/* ===================== MONDAY FORM WRAPPER ===================== */
.monday-form-wrapper {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  margin-bottom: var(--space-md);
}

.monday-form-wrapper iframe {
  width: 100%;
  min-height: 760px;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .monday-form-wrapper iframe {
    min-height: 820px;
  }
}

/* ===================== MONDAY FALLBACK ===================== */
.monday-fallback {
  display: none;
  text-align: center;
  padding: var(--space-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.monday-fallback.visible {
  display: block;
}

.monday-fallback p {
  color: var(--text-300);
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
}

.btn-fallback {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
}

/* ===================== HERO FORM CARD — AJUSTES V2 ===================== */
.hfc-title {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

/* ===================== COMO FUNCIONA — PROCESSO (3 ETAPAS) ===================== */
.como-funciona-processo {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--brand-800) 0%, #0d1929 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cfp-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: var(--space-2xl) 0;
  flex-wrap: wrap;
}

.cfp-step {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-lg);
  position: relative;
}

.cfp-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-500), #0fb8ad);
  color: var(--brand-900);
  font-size: 1.375rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(29,212,200,.12);
}

.cfp-step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: var(--space-sm);
  line-height: 1.35;
}

.cfp-step-content p {
  font-size: 0.875rem;
  color: var(--text-400);
  line-height: 1.65;
}

.cfp-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-500), rgba(29,212,200,.2));
  align-self: center;
  flex-shrink: 0;
  margin-top: -48px; /* alinha com centro do número */
}

.cfp-cta-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.cfp-cta-note {
  font-size: 0.8rem;
  color: var(--text-400);
}

@media (max-width: 768px) {
  .cfp-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xl);
  }

  .cfp-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: 0;
    gap: var(--space-md);
    min-width: unset;
    width: 100%;
  }

  .cfp-step-num {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .cfp-connector {
    display: none;
  }
}

/* ===================== MODAL CARD — SEM OBS (v2 simplificado) ===================== */
.modal-cta-block {
  text-align: center;
  margin-top: var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.modal-cta-note {
  font-size: 0.875rem;
  color: var(--text-400);
  max-width: 400px;
}

/* ===================== BTN OUTLINE ===================== */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--brand-500);
  color: var(--brand-500);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(29,212,200,.08);
  outline: none;
}

/* ===================== CTA FINAL — ÍCONE ATUALIZADO ===================== */
.cta-final-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1rem;
}

/* ===================== MOBILE CTA — ÍCONE ATUALIZADO ===================== */
.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
}

/* ============================================================
   NEXUM v3 — SEGUNDO PONTO DE CONVERSÃO + REFINAMENTOS
   ============================================================ */

/* SEGUNDO CTA / FORMULÁRIO */
.segundo-cta {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #080E1A 0%, var(--brand-800) 60%, #0d1929 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
.sc-copy { padding-top: var(--space-xl); }
.sc-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-100);
  line-height: 1.2;
  margin: var(--space-md) 0 var(--space-lg);
}
.sc-sub {
  font-size: .95rem;
  color: var(--text-300);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}
.sc-checks {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.sc-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-200);
}
.sc-form-wrapper { position: sticky; top: 118px; }

@media (max-width: 900px) {
  .sc-inner { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .sc-form-wrapper { position: static; }
}

/* TC-FEATURED — destaque mais pronunciado */
.testimonial-card.tc-featured {
  background: linear-gradient(135deg, var(--brand-700) 0%, rgba(29,212,200,.08) 100%);
  border-color: rgba(29,212,200,.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(29,212,200,.12), var(--shadow-lg);
}
.testimonial-card.tc-featured .tc-quote {
  color: var(--text-100);
}

/* TC AVATAR — melhor legibilidade */
.tc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-600), rgba(29,212,200,.3));
  border: 1.5px solid rgba(29,212,200,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--brand-500);
  flex-shrink: 0;
  letter-spacing: .05em;
}

/* TC MODAL — cidade/estado mais legível */
.tc-modal {
  display: block;
  font-size: .78rem;
  color: var(--text-400);
  margin-top: 2px;
}

/* COMPARATIVO — nota positiva */
.cmp-note {
  font-size: .875rem;
  color: var(--text-300);
  line-height: 1.65;
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: rgba(29,212,200,.05);
  border-left: 3px solid var(--brand-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ============================================================
   NEXUM v3 — MODALIDADES v2 + FOOTER REPAGINADO
   ============================================================ */

/* ===================== MODAL GRID V2 — 2×2 ===================== */
.modal-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.mc2-card {
  background: var(--brand-750);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.mc2-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,212,200,.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.mc2-card:hover,
.mc2-card:focus {
  border-color: rgba(29,212,200,.35);
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(0,0,0,.3), 0 0 0 1px rgba(29,212,200,.1);
  outline: none;
}
.mc2-card:hover::before,
.mc2-card:focus::before { opacity: 1; }

.mc2-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}
.mc2-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(29,212,200,.08);
  border: 1px solid rgba(29,212,200,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-500);
  flex-shrink: 0;
}
.mc2-badge {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--brand-900);
  background: var(--brand-500);
  border-radius: 100px;
  padding: 3px 10px;
  line-height: 1.4;
  white-space: nowrap;
  align-self: flex-start;
}
.mc2-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}
.mc2-desc {
  font-size: .875rem;
  color: var(--text-300);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
  flex: 1;
}
.mc2-highlights {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-xl);
  padding: var(--space-md);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.05);
}
.mc2-highlights li {
  font-size: .8rem;
  color: var(--text-400);
  padding-left: 16px;
  position: relative;
}
.mc2-highlights li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--brand-500);
  font-weight: 700;
}
.mc2-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--brand-500);
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid rgba(29,212,200,.25);
  border-radius: var(--radius-lg);
  transition: background var(--transition), border-color var(--transition);
  align-self: flex-start;
  margin-top: auto;
}
.mc2-cta:hover { background: rgba(29,212,200,.08); border-color: rgba(29,212,200,.45); }
.mc2-cta svg { flex-shrink: 0; transition: transform var(--transition); }
.mc2-cta:hover svg { transform: translateX(3px); }

@media (max-width: 900px) {
  .modal-grid-v2 { grid-template-columns: 1fr; gap: var(--space-lg); }
}
@media (min-width: 901px) and (max-width: 1024px) {
  .modal-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== FOOTER REPAGINADO ===================== */
.footer {
  background: var(--brand-900);
  border-top: 1px solid var(--border);
  padding: 0;
}
.footer-top-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500) 0%, rgba(29,212,200,.3) 50%, transparent 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.4fr 1fr;
  gap: var(--space-3xl);
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--space-md); }
.footer-logo-link { display: inline-flex; }
.footer-logo-img { height: 140px; width: auto; object-fit: contain; }
.footer-tagline {
  font-size: .875rem;
  color: var(--text-400);
  line-height: 1.7;
  max-width: 280px;
}
.footer-parceiros { margin-top: var(--space-sm); }
.footer-parceiros-label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-400);
  margin-bottom: var(--space-sm);
}
.footer-parceiros-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-parceiros-logos picture {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  opacity: .82;
}
.footer-parceiros-logos picture:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,.5);
  opacity: 1;
}
.footer-partner-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  filter: none;
  transition: none;
}
.footer-partner-logo-bradesco,
.footer-partner-logo-porto { width: 100% !important; height: 100% !important; border-radius: 0 !important; }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-col-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-400);
  margin-bottom: var(--space-lg);
}
.footer-col > ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: .875rem;
  color: var(--text-400);
  text-decoration: none;
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-link:hover { color: var(--brand-500); }
.footer-cta-link {
  color: var(--brand-500) !important;
  font-weight: 600;
}
.footer-lgpd {
  font-size: .78rem;
  color: var(--muted-500);
  line-height: 1.65;
  margin-top: var(--space-xl);
  max-width: 220px;
}

/* Contact column */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}
.footer-contact-item:hover {
  border-color: var(--border-hover);
  background: rgba(29,212,200,.04);
}
.footer-wa-btn {
  border-color: rgba(37,211,102,.25);
  background: rgba(37,211,102,.04);
}
.footer-wa-btn:hover {
  border-color: rgba(37,211,102,.5);
  background: rgba(37,211,102,.08);
}
.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,.05);
  color: var(--text-300);
}
.footer-wa-icon {
  background: rgba(37,211,102,.12);
  color: #25D366;
}
.footer-ig-icon {
  background: rgba(200,80,200,.1);
  color: #C050C8;
}
.footer-contact-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.footer-contact-text strong {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-200);
  line-height: 1.3;
}
.footer-contact-text span {
  font-size: .8rem;
  color: var(--text-400);
  line-height: 1.4;
}
.footer-atendimento {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: var(--space-lg);
  padding: 10px 14px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.footer-atendimento-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-400);
}
.footer-atendimento-horas {
  font-size: .8rem;
  color: var(--text-300);
}

/* Footer bottom */
.footer-bottom { padding: var(--space-xl) 0; }
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.footer-disclaimer {
  font-size: .72rem;
  color: var(--muted-500);
  line-height: 1.65;
  max-width: 900px;
}
.footer-copy {
  font-size: .75rem;
  color: var(--muted-500);
}

/* Footer responsive */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); padding: var(--space-2xl) 0; }
  .footer-tagline { max-width: 100%; }
  .footer-lgpd { max-width: 100%; }
  .footer-bottom { padding-bottom: 80px; }
}

/* overrides individuais migrados para os blocos principais acima */

/* ============================================================
   FORMULÁRIO NATIVO — NF (Native Form)
   ============================================================ */

.nf-form {
  width: 100%;
}

/* Campos */
.nf-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.nf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nf-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-200);
  display: block;
}

.nf-req {
  color: #E53E3E;
  margin-left: 2px;
}

.nf-hint {
  font-size: .78rem;
  color: var(--text-400);
  margin-top: -2px;
}

.nf-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--brand-750);
  color: var(--text-100);
  font-size: .95rem;
  font-family: var(--font-primary);
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}

.nf-input::placeholder {
  color: var(--text-500);
}

.nf-input:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: 0 0 0 3px rgba(29,212,200,.15);
}

.nf-input.nf-invalid {
  border-color: #E53E3E;
  box-shadow: 0 0 0 3px rgba(229,62,62,.12);
}

/* Telefone */
.nf-phone-wrap {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.nf-phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--brand-700);
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: .88rem;
  color: var(--text-300);
  white-space: nowrap;
  flex-shrink: 0;
}

.nf-input-phone {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  flex: 1;
}

/* Checkboxes */
.nf-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.nf-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .2s, background .2s;
  user-select: none;
}

.nf-check:hover {
  border-color: var(--brand-500);
  background: rgba(29,212,200,.05);
}

.nf-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--brand-500);
  cursor: pointer;
  border-radius: 4px;
}

.nf-check span {
  font-size: .875rem;
  color: var(--text-200);
  line-height: 1.4;
}

.nf-check:has(input:checked) {
  border-color: var(--brand-500);
  background: rgba(29,212,200,.08);
}

.nf-check:has(input:checked) span {
  color: var(--text-100);
}

/* Erro */
.nf-error {
  font-size: .85rem;
  color: #FC8181;
  min-height: 20px;
  margin-bottom: 8px;
  display: none;
}

.nf-error.visible {
  display: block;
}

/* Botão submit */
.nf-submit {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 1rem;
}

.nf-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Estado de sucesso */
.nf-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  gap: 16px;
}

.nf-success[aria-hidden="false"] {
  display: flex;
}

.nf-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(29,212,200,.12);
  border: 2px solid var(--brand-500);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nf-success-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-100);
  margin: 0;
}

.nf-success-sub {
  font-size: .88rem;
  color: var(--text-300);
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
}

/* Variante clara (hero card tem fundo claro) */
.hero-form-card .nf-input {
  background: #F8FAFC;
  border-color: #E2E8F0;
  color: #1A2840;
}

.hero-form-card .nf-input::placeholder {
  color: #94A3B8;
}

.hero-form-card .nf-input:focus {
  border-color: var(--brand-500);
  background: #fff;
}

.hero-form-card .nf-phone-prefix {
  background: #F1F5F9;
  border-color: #E2E8F0;
  color: #475569;
}

.hero-form-card .nf-check {
  border-color: #E2E8F0;
  background: #F8FAFC;
}

.hero-form-card .nf-check:hover {
  border-color: var(--brand-500);
  background: rgba(29,212,200,.04);
}

.hero-form-card .nf-check:has(input:checked) {
  border-color: var(--brand-500);
  background: rgba(29,212,200,.06);
}

.hero-form-card .nf-check span {
  color: #334155;
}

.hero-form-card .nf-label {
  color: #1A2840;
}

.hero-form-card .nf-hint {
  color: #64748B;
}

.hero-form-card .nf-success-title {
  color: #1A2840;
}

.hero-form-card .nf-success-sub {
  color: #475569;
}

@media (max-width: 480px) {
  .nf-submit { font-size: .9rem; padding: 13px 20px; }
}
