/* ==========================================================
   Facilita Messaging - componentes das paginas internas
   Complementa facilita-novo.css
   ========================================================== */

/* --- Hero de pagina interna --- */
.page-hero {
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand) 12%, var(--paper)), var(--paper));
  border-bottom: 1px solid var(--line);
}
.page-hero .wrap { padding-top: 66px; padding-bottom: 58px; }
.crumb { display: flex; gap: 9px; align-items: center; font-family: var(--mono); font-size: 12px; color: var(--faint); margin-bottom: 20px; letter-spacing: .06em; }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--brand); }
.crumb svg { width: 13px; height: 13px; }
.page-hero h1 { font-size: clamp(32px, 4.6vw, 52px); font-weight: 800; line-height: 1.08; max-width: 20ch; }
.page-hero .lead { font-size: 18px; color: var(--muted); margin-top: 20px; max-width: 60ch; line-height: 1.65; }
.page-actions { display: flex; gap: 13px; margin-top: 32px; flex-wrap: wrap; }

/* --- Blocos de texto --- */
.prose { max-width: 70ch; }
.prose h2 { font-size: clamp(25px, 3vw, 34px); font-weight: 800; }
.prose h3 { font-size: 20px; font-weight: 800; margin: 0 0 8px; }
.prose p { color: var(--muted); font-size: 16.5px; margin-top: 16px; line-height: 1.75; }
.prose ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.prose li { display: flex; gap: 12px; color: var(--text); font-size: 15.5px; line-height: 1.6; }
.prose li svg { width: 20px; height: 20px; color: #fff; background: var(--teal); border-radius: 50%; padding: 4px; flex: none; margin-top: 2px; }

/* --- Cartao de destaque lateral --- */
.side-card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line); border-radius: 24px; padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.side-card h3 { font-size: 19px; font-weight: 800; margin: 0 0 6px; }
.side-card p { color: var(--muted); font-size: 14.5px; margin-top: 10px; line-height: 1.6; }
.split-2 { display: grid; grid-template-columns: 1.3fr .7fr; gap: 54px; align-items: start; }

/* --- Setores (cards com lista) --- */
.sector-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.sector {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line); border-radius: 24px; padding: 30px 28px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.sector:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); }
.sector-ico { width: 56px; height: 56px; border-radius: 17px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--brand), var(--teal)); color: #fff; box-shadow: 0 14px 26px -12px var(--brand); transition: transform .25s; }
.sector:hover .sector-ico { transform: scale(1.07) rotate(-5deg); }
.sector-ico svg { width: 27px; height: 27px; }
.sector h3 { font-size: 20px; font-weight: 800; }
.sector > p { color: var(--muted); font-size: 15px; margin-top: 12px; line-height: 1.65; }
.sector ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 11px; }
.sector li { display: flex; gap: 11px; font-size: 14.5px; color: var(--text); align-items: flex-start; line-height: 1.5; }
.sector li svg { width: 19px; height: 19px; color: #fff; background: var(--teal); border-radius: 50%; padding: 4px; flex: none; margin-top: 1px; }

/* --- Acordeao (FAQ) --- */
.acc { display: grid; gap: 13px; max-width: 830px; margin: 0 auto; }
.acc-item {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s;
}
.acc-item.open { border-color: color-mix(in srgb, var(--brand) 42%, var(--line)); box-shadow: var(--shadow); }
.acc-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: 16.5px; font-weight: 700; color: var(--text); padding: 23px 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.acc-q .ic { width: 32px; height: 32px; border-radius: 11px; background: color-mix(in srgb, var(--brand) 14%, transparent); color: var(--brand); display: grid; place-items: center; flex: none; transition: transform .25s, background .2s, color .2s; }
.acc-q .ic svg { width: 16px; height: 16px; }
.acc-item.open .acc-q .ic { transform: rotate(45deg); background: var(--brand); color: #fff; }
.acc-a { display: none; padding: 0 26px 26px; color: var(--muted); font-size: 15.5px; line-height: 1.75; }
.acc-a a { color: var(--brand); font-weight: 600; }
.acc-item.open .acc-a { display: block; }

/* --- Passos numerados (usar so quando houver ordem real) --- */
.steps { display: grid; gap: 18px; counter-reset: passo; max-width: 760px; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 20px; align-items: start; }
.step-n {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--teal)); color: #fff;
  font-weight: 800; font-size: 19px; box-shadow: 0 12px 24px -12px var(--brand);
  font-variant-numeric: tabular-nums;
}
.step h4 { font-size: 17.5px; font-weight: 800; margin: 0 0 6px; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.65; }

@media (max-width: 900px) {
  .split-2 { grid-template-columns: 1fr; gap: 38px; }
  .sector-grid { grid-template-columns: 1fr; }
  .page-hero .wrap { padding-top: 46px; padding-bottom: 42px; }
}
@media (prefers-reduced-motion: reduce) {
  .sector, .sector-ico, .acc-item, .acc-q .ic { transition: none !important; }
}

/* ===== Componentes de paginas tecnicas (integracao) ===== */
.int-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.int-card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line); border-radius: 24px; padding: 30px 26px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .22s, box-shadow .22s, border-color .22s;
}
.int-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--brand), var(--teal)); }
.int-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand) 42%, var(--line)); }
.int-ico { width: 56px; height: 56px; border-radius: 17px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--brand), var(--teal)); color: #fff; box-shadow: 0 14px 26px -12px var(--brand); }
.int-ico svg { width: 27px; height: 27px; }
.int-card h3 { font-size: 18px; font-weight: 800; }
.int-card p { color: var(--muted); font-size: 14px; margin-top: 10px; line-height: 1.6; flex: 1; }
.int-links { margin-top: 18px; display: grid; gap: 9px; }
.int-links a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--brand); }
.int-links a svg { width: 15px; height: 15px; }

/* bloco de codigo / URL copiavel */
.code-block {
  background: #0d1a27; border: 1px solid #1e3245; border-radius: 16px;
  overflow: hidden; margin-top: 18px; box-shadow: var(--shadow-sm);
}
.code-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 16px; background: #12222f; border-bottom: 1px solid #1e3245; }
.code-head span { font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: #7fa8c4; font-weight: 700; }
.code-copy { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font); font-size: 12.5px; font-weight: 700; color: #57b6ee; background: rgba(56,169,234,.12); border: 1px solid rgba(56,169,234,.3); border-radius: 8px; padding: 6px 12px; cursor: pointer; transition: .15s; }
.code-copy:hover { background: rgba(56,169,234,.2); }
.code-copy svg { width: 14px; height: 14px; }
.code-block pre { margin: 0; padding: 16px 18px; overflow-x: auto; }
.code-block code { font-family: var(--mono); font-size: 13px; line-height: 1.7; color: #d6e6f2; white-space: pre; }
.code-block code .tok { color: #f0a95b; }
.code-block code .par { color: #6fc0ef; }
.code-block code .str { color: #86e0a0; }
.code-block code .k { color: #8fb8ff; }

/* info box */
.infobox { display: flex; gap: 15px; background: color-mix(in srgb, var(--brand) 8%, var(--panel)); border: 1px solid color-mix(in srgb, var(--brand) 26%, var(--line)); border-radius: 18px; padding: 20px 22px; margin-top: 22px; }
.infobox .ib-ico { width: 40px; height: 40px; border-radius: 12px; flex: none; display: grid; place-items: center; background: linear-gradient(135deg, var(--brand), var(--teal)); color: #fff; }
.infobox .ib-ico svg { width: 21px; height: 21px; }
.infobox h4 { font-size: 15.5px; font-weight: 800; margin: 0 0 4px; }
.infobox p { color: var(--muted); font-size: 14.5px; margin: 0; line-height: 1.6; }
.infobox.flash { background: color-mix(in srgb, var(--coral) 9%, var(--panel)); border-color: color-mix(in srgb, var(--coral) 30%, var(--line)); }
.infobox.flash .ib-ico { background: linear-gradient(135deg, var(--coral), #f4a340); }

.def-list { display: grid; gap: 15px; margin-top: 20px; }
.def-row { display: grid; gap: 4px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.def-row dt { font-family: var(--mono); font-weight: 700; font-size: 13.5px; color: var(--brand-deep); }
.def-row dd { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }
:root[data-theme="dark"] .def-row dt { color: #7fc4ee; }

@media (max-width: 900px) {
  .int-grid { grid-template-columns: 1fr 1fr; }
  .def-row { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 560px) { .int-grid { grid-template-columns: 1fr; } }

/* ===== Screenshot do sistema (referencia visual) ===== */
.shot { margin-top: 20px; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: var(--panel); box-shadow: var(--shadow-sm); }
.shot-bar { display: flex; align-items: center; gap: 7px; padding: 10px 14px; background: var(--panel-2); border-bottom: 1px solid var(--line); }
.shot-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.shot-bar i:nth-child(1) { background: #f0655b; } .shot-bar i:nth-child(2) { background: #f4b740; } .shot-bar i:nth-child(3) { background: #3ec46d; }
.shot-bar span { margin-left: 8px; font-family: var(--mono); font-size: 11px; color: var(--faint); letter-spacing: .04em; }
.shot img { display: block; width: 100%; height: auto; }
.shot-cap { padding: 11px 16px; font-size: 13px; color: var(--muted); border-top: 1px solid var(--line); background: var(--panel-2); }
.shot-cap b { color: var(--text); font-weight: 700; }
.shots-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.shots-2 .shot { margin-top: 0; }
@media (max-width: 640px) { .shots-2 { grid-template-columns: 1fr; } }

/* ===== Grid de downloads (exemplos e bibliotecas) ===== */
.dl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.dl-chip {
  display: flex; align-items: center; gap: 13px; padding: 17px 18px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.dl-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand) 42%, var(--line)); }
.dl-chip .dl-ico { width: 42px; height: 42px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: color-mix(in srgb, var(--brand) 12%, transparent); color: var(--brand); }
.dl-chip .dl-ico svg { width: 21px; height: 21px; }
.dl-chip b { display: block; font-size: 14.5px; font-weight: 700; color: var(--text); }
.dl-chip span { display: block; font-family: var(--mono); font-size: 11px; color: var(--faint); margin-top: 2px; }
@media (max-width: 900px) { .dl-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .dl-grid { grid-template-columns: 1fr; } }

/* ===== Demo de API na home (abas SMS / RCS) ===== */
.dev-demo { max-width: 860px; margin: 40px auto 0; background: var(--panel); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); }
.dev-tabs { display: flex; gap: 2px; padding: 12px 16px 0; background: var(--panel-2); border-bottom: 1px solid var(--line); }
.dev-tab { font-family: var(--font); font-size: 14.5px; font-weight: 700; color: var(--muted); background: none; border: none; border-bottom: 2px solid transparent; padding: 12px 22px; cursor: pointer; transition: color .18s, border-color .18s; display: inline-flex; align-items: center; gap: 8px; }
.dev-tab svg { width: 17px; height: 17px; }
.dev-tab:hover { color: var(--text); }
.dev-tab.active { color: var(--brand); border-bottom-color: var(--brand); }
.dev-panel { display: none; }
.dev-panel.active { display: block; }
.dev-endpoint { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid #1e3245; background: #12222f; }
.dev-verb { font-family: var(--mono); font-weight: 800; font-size: 11.5px; letter-spacing: .1em; color: #fff; background: #1fab53; padding: 6px 12px; border-radius: 8px; flex: none; }
.dev-path { font-family: var(--mono); font-size: 13px; color: #cfe0ee; overflow-x: auto; white-space: nowrap; }
.dev-path .var { color: #f0a95b; }
.dev-body { background: #0d1a27; }
.dev-body pre { margin: 0; padding: 20px; overflow-x: auto; }
.dev-body code { font-family: var(--mono); font-size: 13px; line-height: 1.7; color: #d6e6f2; white-space: pre; }
.dev-body code .k { color: #8fb8ff; }
.dev-body code .str { color: #86e0a0; }
.dev-body code .var { color: #f0a95b; }
.dev-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 14px 18px; background: var(--panel-2); border-top: 1px solid var(--line); }
.dev-foot span { font-size: 13.5px; color: var(--muted); }
.dev-copy { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font); font-size: 13px; font-weight: 700; color: var(--brand); background: color-mix(in srgb, var(--brand) 12%, transparent); border: 1px solid color-mix(in srgb, var(--brand) 30%, transparent); border-radius: 9px; padding: 8px 14px; cursor: pointer; }
.dev-copy svg { width: 15px; height: 15px; }
@media (max-width: 560px) { .dev-tab { padding: 12px 16px; } }

/* ===== Autenticacao (login / cadastro) ===== */
.auth-hero { background: linear-gradient(180deg, color-mix(in srgb, var(--brand) 12%, var(--paper)), var(--paper)); border-bottom: 1px solid var(--line); }
.auth-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 26px; align-items: start; max-width: 1020px; margin: 0 auto; }
.auth-card { background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid var(--line); border-radius: 24px; padding: 34px 32px; box-shadow: var(--shadow-sm); }
.auth-card.solo { max-width: 520px; margin: 0 auto; }
.auth-card h3 { font-size: 20px; font-weight: 800; margin: 0 0 6px; display: flex; align-items: center; gap: 10px; }
.auth-card h3 svg { width: 22px; height: 22px; color: var(--brand); }
.auth-card .sub { color: var(--muted); font-size: 14.5px; margin: 0 0 24px; line-height: 1.55; }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--text); }
.field label strong { color: var(--brand); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-control { width: 100%; font-family: var(--font); font-size: 15px; color: var(--text); background: var(--paper); border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px; transition: border-color .16s, box-shadow .16s; }
.form-control::placeholder { color: var(--faint); }
.form-control:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--ring); }
.form-control:disabled { background: var(--panel-2); color: var(--muted); cursor: not-allowed; }
select.form-control { appearance: none; -webkit-appearance: none; background-repeat: no-repeat; background-position: right 12px center; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%235a6b7a' stroke-width='2'><path d='m4 6 4 4 4-4'/></svg>"); padding-right: 38px; }
.auth-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 10px; align-items: center; flex-wrap: wrap; }
.auth-actions.end { justify-content: flex-end; }
.auth-link { font-size: 13px; font-weight: 600; color: var(--brand); cursor: pointer; background: none; border: none; padding: 0; font-family: var(--font); }
.auth-link:hover { text-decoration: underline; }
.cf-turnstile { margin: 4px 0 16px; }
.alert { border-radius: 14px; padding: 16px 18px; margin-bottom: 18px; font-size: 14.5px; border: 1px solid var(--line); line-height: 1.55; color: var(--text); }
.alert strong { font-weight: 800; }
.alert h4 { margin: 0 0 6px; font-weight: 800; font-size: 17px; }
.alert-success { background: color-mix(in srgb, #16a34a 11%, transparent); border-color: color-mix(in srgb, #16a34a 32%, var(--line)); }
.alert-info { background: color-mix(in srgb, var(--brand) 11%, transparent); border-color: color-mix(in srgb, var(--brand) 32%, var(--line)); }
.alert-secondary { background: color-mix(in srgb, var(--coral) 10%, transparent); border-color: color-mix(in srgb, var(--coral) 30%, var(--line)); }
@media (max-width: 820px) { .auth-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ===== Autenticacao v2 (topo compacto + sidebar de confianca) ===== */
.auth-top { background: linear-gradient(180deg, color-mix(in srgb, var(--brand) 10%, var(--paper)), var(--paper)); border-bottom: 1px solid var(--line); }
.auth-top .wrap { padding: 32px 22px 28px; }
.auth-top h1 { font-size: clamp(25px, 3.2vw, 36px); font-weight: 800; margin: 12px 0 0; line-height: 1.1; }
.auth-top p { color: var(--muted); font-size: 16px; margin: 9px 0 0; max-width: 62ch; line-height: 1.5; }
.auth-top p strong { color: var(--brand-deep); }

.signup-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 26px; align-items: start; max-width: 1080px; margin: 0 auto; }
.signup-layout > .auth-card { border-radius: 16px; border-color: color-mix(in srgb, #f4b740 34%, var(--line)); }
.trust-sidebar { display: grid; gap: 14px; position: sticky; top: 88px; }

/* mini card de login no topo da sidebar */
.login-mini { background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid var(--line); border-radius: 18px; padding: 22px; box-shadow: var(--shadow-sm); }
.login-mini h3 { font-size: 16px; font-weight: 800; margin: 0 0 4px; display: flex; align-items: center; gap: 9px; }
.login-mini h3 svg { width: 19px; height: 19px; color: var(--brand); }
.login-mini .sub { color: var(--muted); font-size: 13px; margin: 0 0 16px; }
.login-mini .btn { width: 100%; justify-content: center; }
.login-mini .field { margin-bottom: 13px; }

/* cards de confianca */
.trust-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--faint); margin: 4px 2px 2px; }
.trust-card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; box-shadow: var(--shadow-sm); }
.trust-card .tc-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.trust-card .tc-name { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 14.5px; color: var(--text); }
.trust-card .tc-badge { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; flex: none; font-weight: 800; font-size: 13px; color: #fff; }
.trust-card .tc-score { font-weight: 800; font-size: 17px; color: var(--brand); font-variant-numeric: tabular-nums; white-space: nowrap; }
.trust-card .tc-stars { color: #f4b740; font-size: 13px; letter-spacing: 2px; margin-top: 5px; }
.trust-card p { color: var(--muted); font-size: 12.5px; margin: 8px 0 0; line-height: 1.5; }
.trust-card.tc-green { background: color-mix(in srgb, #22c55e 8%, var(--panel)); border-color: color-mix(in srgb, #22c55e 26%, var(--line)); }
.trust-card.tc-green .tc-score { color: #16a34a; }
.trust-card.tc-brand { background: color-mix(in srgb, var(--brand) 9%, var(--panel)); border-color: color-mix(in srgb, var(--brand) 28%, var(--line)); }
.trust-card.tc-amber { background: color-mix(in srgb, #f4b740 12%, var(--panel)); border-color: color-mix(in srgb, #f4b740 34%, var(--line)); }
.trust-card.tc-amber .tc-score { color: #d98a0b; }

@media (max-width: 900px) {
  .signup-layout { grid-template-columns: 1fr; }
  .trust-sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .login-mini { grid-column: 1 / -1; }
}
@media (max-width: 560px) { .trust-sidebar { grid-template-columns: 1fr; } }

/* ===== Login estilo DO (dois cards com checklist) ===== */
.auth-card.accent { border-color: color-mix(in srgb, var(--brand) 42%, var(--line)); position: relative; overflow: hidden; }
.auth-card.accent::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--brand), var(--teal)); }
.auth-pill { align-self: flex-start; font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--brand-deep); background: color-mix(in srgb, var(--brand) 13%, transparent); border: 1px solid color-mix(in srgb, var(--brand) 26%, transparent); padding: 6px 13px; border-radius: 999px; display: inline-block; margin-bottom: 14px; }
:root[data-theme="dark"] .auth-pill { color: #8fd0f7; }
.auth-card h2 { font-size: clamp(24px, 2.6vw, 30px); font-weight: 800; margin: 0 0 8px; line-height: 1.12; }
.benefits { list-style: none; padding: 0; margin: 20px 0 24px; display: grid; gap: 13px; }
.benefits li { display: flex; gap: 12px; font-size: 15px; font-weight: 600; color: var(--text); align-items: center; }
.benefits li svg { width: 21px; height: 21px; color: #fff; background: var(--teal); border-radius: 50%; padding: 4px; flex: none; }
.auth-card .btn-block { width: 100%; justify-content: center; font-size: 16px; padding: 15px; }

/* wordmark Reclame Aqui (texto estilizado) */
.ra-logo { font-weight: 800; font-size: 16px; letter-spacing: -.01em; color: var(--text); }
.ra-logo b { color: #16a34a; font-weight: 800; }
