/* ============================================================
   gov.br — clone limpo (Renovar CNH)
   Sem dependência externa. Cores e métricas do Design System gov.br.
   ============================================================ */

:root {
  --c-blue:        #1351B4;
  --c-blue-dark:   #071D41;
  --c-blue-warm:   #2670E8;
  --c-blue-bg:     #E8F0FA;
  --c-yellow:      #FFCD07;
  --c-green:       #168821;
  --c-green-dark:  #126614;
  --c-orange:      #F2A03C;
  --c-text:        #333333;
  --c-text-soft:   #555555;
  --c-muted:       #888888;
  --c-bronze:      #B58C5A;
  --c-silver:      #B9B9B9;
  --c-gold:        #D1B257;
  --c-line:        #DEDEDE;
  --c-line-soft:   #ECECEC;
  --c-bg:          #FFFFFF;
  --c-bg-alt:      #F6F8FB;
  --c-bg-alt-2:    #F0F2F5;
  --c-success-bg:  #E1F4E5;

  --radius:        6px;
  --radius-lg:     10px;
  --shadow-sm:     0 1px 2px rgba(0,0,0,.05);
  --shadow-md:     0 4px 14px rgba(11,38,90,.08);

  --container:     1200px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--c-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { margin: 0 0 0.5rem 1.2rem; padding: 0; }
ul li, ol li { margin-bottom: .25rem; }
p { margin: 0 0 .8rem 0; }
img { max-width: 100%; display: block; }
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- skip menu ---------- */
.skip-menu { position: absolute; left: -9999px; top: -9999px; }
.skip-menu a:focus { left: 8px; top: 8px; background: var(--c-blue); color: #fff; padding: 6px 10px; border-radius: 4px; z-index: 9999; position: fixed; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line-soft);
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--c-text);
}
.brand img { height: 28px; width: auto; }
.brand .brand-title {
  font-size: 13px; color: var(--c-text-soft);
  border-left: 1px solid var(--c-line);
  padding-left: 12px; line-height: 1.2;
}
.topbar-search {
  flex: 1;
  display: flex; align-items: center;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 6px 14px;
  max-width: 520px;
  margin: 0 auto;
}
.topbar-search input {
  flex: 1; border: 0; background: transparent; outline: 0;
  font-size: 14px; color: var(--c-text);
}
.topbar-search button {
  border: 0; background: transparent; color: var(--c-blue);
  cursor: pointer; padding: 4px;
}
.topbar-actions {
  display: flex; align-items: center; gap: 16px;
  font-size: 13px;
}
.topbar-actions a {
  color: var(--c-text-soft); text-decoration: none;
}
.topbar-actions .contrast-link { display: inline-flex; align-items: center; gap: 6px; }
.btn-login {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-blue);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}
.btn-login:hover { background: var(--c-blue-warm); text-decoration: none; }

/* ---------- main nav ---------- */
.mainnav {
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
}
.mainnav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.mainnav a {
  display: inline-block;
  padding: 14px 16px;
  color: var(--c-text);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}
.mainnav a:hover { color: var(--c-blue); text-decoration: none; }
.mainnav a.is-active {
  color: var(--c-blue);
  border-bottom-color: var(--c-blue);
  font-weight: 600;
}

/* ---------- breadcrumb ---------- */
.breadcrumbs {
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-line-soft);
}
.breadcrumbs-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 24px;
  font-size: 13px;
  color: var(--c-text-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumbs-inner a { color: var(--c-text-soft); }
.breadcrumbs-inner i { color: var(--c-blue); }
.breadcrumbs-inner .sep { color: var(--c-muted); }
.breadcrumbs-inner .current { color: var(--c-text); font-weight: 500; }

/* ---------- container ---------- */
.page {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px;
}

/* ---------- service hero ---------- */
.service-category {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--c-text-soft);
  margin-bottom: 6px;
}
.service-category i { color: var(--c-blue); }
.service-subcategory {
  font-size: 13px; color: var(--c-muted); margin-bottom: 18px;
}
.service-subcategory a { color: var(--c-text-soft); }

.service-hero {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-line-soft);
}
.service-hero-left { flex: 1; min-width: 0; }
.service-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.25;
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
}
.service-popular-names {
  font-size: 13px; color: var(--c-muted); font-style: italic;
}
.btn-start {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-green);
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(22,136,33,.25);
  text-decoration: none;
}
.btn-start:hover {
  background: var(--c-green-dark);
  text-decoration: none;
  color: #fff;
}
.btn-start-mobile { display: none; }

/* ---------- rating + share row ---------- */
.service-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line-soft);
  font-size: 13px;
  color: var(--c-text-soft);
}
.rating { display: flex; align-items: center; gap: 8px; }
.rating .stars { color: var(--c-yellow); letter-spacing: 1px; font-size: 16px; }
.rating .stars .empty { color: var(--c-line); }
.rating .num { font-weight: 600; color: var(--c-text); }
.rating .total { color: var(--c-muted); }
.share {
  display: flex; align-items: center; gap: 6px;
}
.share-label { color: var(--c-muted); margin-right: 4px; }
.share a, .share button {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--c-bg-alt);
  color: var(--c-text-soft);
  border: 0; cursor: pointer;
}
.share a:hover, .share button:hover {
  background: var(--c-blue); color: #fff; text-decoration: none;
}
.last-modified { color: var(--c-muted); font-size: 12px; }

/* ---------- service grid ---------- */
.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  margin-top: 28px;
}

/* ---------- collapse blocks ---------- */
.collapse {
  border-bottom: 1px solid var(--c-line);
}
.collapse:first-child { border-top: 1px solid var(--c-line); }
.collapse-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--c-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
}
.collapse-trigger:hover { color: var(--c-blue-warm); }
.collapse-trigger .chev {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--c-blue-bg);
  color: var(--c-blue);
  font-size: 13px;
  transition: transform .2s ease;
}
.collapse[data-open="true"] .chev { transform: rotate(180deg); }
.collapse-content {
  padding: 0 0 20px 0;
  font-size: 15px;
  color: var(--c-text);
}
.collapse[data-open="false"] .collapse-content { display: none; }

.collapse-content p { margin-bottom: 12px; }
.collapse-content ul { padding-left: 1.2rem; margin-bottom: 12px; }
.collapse-content ul li { margin-bottom: 4px; }

/* steps */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps > li {
  position: relative;
  padding: 18px 22px 18px 64px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}
.steps > li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px; top: 18px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-blue);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
}
.steps .step-title {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: var(--c-text);
  margin-bottom: 6px;
}
.step-sub {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--c-line);
}
.step-sub-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-blue);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin: 0 0 6px 0;
}
.step-channel {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 4px 0;
  font-size: 14px;
}
.step-channel i {
  color: var(--c-blue);
  width: 18px;
  text-align: center;
  padding-top: 3px;
}
.step-duration {
  font-size: 14px;
  color: var(--c-text-soft);
  display: inline-flex; align-items: center; gap: 8px;
}
.step-duration i { color: var(--c-blue); }
.doc-group { margin-top: 8px; }
.doc-group-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  margin: 8px 0 4px 0;
}

/* ---------- sidebar ---------- */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.side-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 20px;
  background: var(--c-bg);
  box-shadow: var(--shadow-sm);
}
.side-card h3 {
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-blue);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.side-card p { font-size: 13px; color: var(--c-text-soft); margin: 0 0 8px 0; }

.account-levels {
  display: flex; gap: 6px; margin: 12px 0;
}
.lvl {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  padding: 6px 4px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.lvl.bronze { background: var(--c-bronze); }
.lvl.silver { background: var(--c-silver); }
.lvl.gold   { background: var(--c-gold); }

.recom-list {
  list-style: none;
  margin: 0; padding: 0;
}
.recom-list li {
  border-top: 1px solid var(--c-line-soft);
  margin: 0;
}
.recom-list li:first-child { border-top: 0; }
.recom-list a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  color: var(--c-text);
  font-size: 14px;
}
.recom-list a:hover { color: var(--c-blue); text-decoration: none; }
.recom-list a i {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-blue-bg);
  color: var(--c-blue);
  border-radius: 50%;
  font-size: 13px;
  flex-shrink: 0;
}

/* ---------- ouvidoria ---------- */
.ouvidoria {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--c-line);
}
.ouvidoria h2 {
  font-size: 20px;
  margin: 0 0 16px 0;
  color: var(--c-text);
  font-weight: 700;
}
.ouvidoria-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ouv-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  background: var(--c-bg);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--c-text);
  transition: all .15s ease;
  text-decoration: none;
}
.ouv-card:hover {
  border-color: var(--c-blue);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transform: translateY(-2px);
}
.ouv-card i {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--c-blue-bg);
  color: var(--c-blue);
  font-size: 18px;
}
.ouv-card .ouv-title { font-weight: 600; font-size: 15px; }
.ouv-card .ouv-sub { font-size: 12px; color: var(--c-muted); }

/* ---------- avaliação útil ---------- */
.usefulness {
  margin-top: 36px;
  padding: 22px;
  background: var(--c-bg-alt);
  border-radius: var(--radius-lg);
  text-align: center;
}
.usefulness h3 {
  margin: 0 0 14px 0;
  font-size: 16px;
  color: var(--c-text);
  font-weight: 600;
}
.usefulness-vote {
  display: inline-flex;
  gap: 12px;
}
.usefulness-vote a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--c-line);
  color: var(--c-text);
  font-size: 14px;
  font-weight: 600;
}
.usefulness-vote a:hover { border-color: var(--c-blue); color: var(--c-blue); text-decoration: none; }
.usefulness-vote .sim i { color: var(--c-green); }
.usefulness-vote .nao i { color: #C92E2E; }
.usefulness-note { font-size: 12px; color: var(--c-muted); margin-top: 10px; }

/* ---------- tags ---------- */
.tags {
  margin-top: 30px;
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: 13px;
}
.tags-label { color: var(--c-muted); font-weight: 600; }
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  color: var(--c-text-soft);
  font-size: 12px;
}
.tag:hover { background: var(--c-blue-bg); border-color: var(--c-blue); color: var(--c-blue); text-decoration: none; }

/* ---------- footer ---------- */
.footer {
  margin-top: 60px;
  background: var(--c-blue-dark);
  color: #DDE3F0;
  padding: 40px 0 22px 0;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}
.footer .brand img { height: 32px; }
.footer .brand .brand-title { color: #C5CCDD; border-left-color: rgba(255,255,255,.18); }
.footer ul.footer-links {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
}
.footer ul.footer-links li { margin: 0; }
.footer ul.footer-links a {
  color: #DDE3F0; font-size: 13px;
}
.footer ul.footer-links a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--container);
  margin: 30px auto 0 auto;
  padding: 20px 24px 0 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  color: #B6BED4;
}
.footer-bottom a { color: #fff; }

/* ---------- back to top ---------- */
.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 44px; height: 44px;
  background: var(--c-blue);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  z-index: 50;
  text-decoration: none;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--c-blue-warm); transform: translateY(-2px); }

/* ---------- yellow strip ---------- */
.yellow-strip {
  height: 4px;
  background: linear-gradient(to right, var(--c-yellow) 0, var(--c-yellow) 50%, var(--c-green) 50%, var(--c-green) 100%);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .service-grid { grid-template-columns: 1fr; }
  .ouvidoria-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer ul.footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .topbar-inner { flex-wrap: wrap; gap: 14px; }
  .topbar-search { order: 3; width: 100%; max-width: none; }
  .topbar-actions { margin-left: auto; }
  .brand .brand-title { display: none; }
  .service-hero { flex-direction: column; }
  .service-hero .btn-start { display: none; }
  .btn-start-mobile {
    display: inline-flex;
    width: 100%; justify-content: center; margin: 8px 0 16px 0;
  }
  .service-title { font-size: 24px; }
  .service-meta { flex-direction: column; align-items: flex-start; }
  .ouvidoria-cards { grid-template-columns: 1fr 1fr; }
  .page { padding: 18px; }
  .steps > li { padding-left: 56px; }
  .footer ul.footer-links { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .ouvidoria-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   QUIZ MODAL & CHECKOUT
   ============================================================ */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-container {
  background: var(--c-bg); width: 90%; max-width: 480px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  overflow: hidden; transform: translateY(20px); transition: transform 0.3s ease;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal-container { transform: translateY(0); }
.modal-header {
  padding: 16px 20px; background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-line-soft);
  display: flex; justify-content: space-between; align-items: center;
}
.modal-title { margin: 0; font-size: 16px; font-weight: 700; color: var(--c-blue); }
.modal-close {
  background: transparent; border: 0; font-size: 24px; cursor: pointer; color: var(--c-text-soft); line-height: 1; padding: 0;
}
.modal-close:hover { color: var(--c-text); }
.modal-body { padding: 24px 20px; }

.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeIn 0.4s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.quiz-step h4 { margin: 0 0 10px 0; font-size: 14px; color: var(--c-muted); text-transform: uppercase; }
.quiz-step p { margin: 0 0 20px 0; font-size: 16px; font-weight: 500; }

.quiz-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-quiz {
  background: var(--c-blue); color: #fff; padding: 12px; border-radius: var(--radius); border: 2px solid var(--c-blue);
  font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s; text-align: center;
}
.btn-quiz:hover { background: var(--c-blue-dark); border-color: var(--c-blue-dark); }
.btn-quiz.btn-outline { background: transparent; color: var(--c-blue); }
.btn-quiz.btn-outline:hover { background: var(--c-bg-alt); }

.text-center { text-align: center; }

.success-box {
  background: var(--c-success-bg); color: var(--c-green-dark); padding: 12px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}

.form-group { margin-bottom: 14px; text-align: left; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 4px; color: var(--c-text-soft); }
.form-group input {
  width: 100%; padding: 10px 12px; border: 1px solid var(--c-line); border-radius: var(--radius);
  font-size: 15px; color: var(--c-text); font-family: inherit;
}
.form-group input:focus { outline: none; border-color: var(--c-blue); box-shadow: 0 0 0 2px var(--c-blue-bg); }

.btn-pix-generate {
  width: 100%; background: var(--c-green); color: #fff; padding: 14px; border: 0; border-radius: var(--radius);
  font-size: 16px; font-weight: 700; cursor: pointer; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.2s;
}
.btn-pix-generate:hover { background: var(--c-green-dark); }

.pix-qr-container { background: #fff; padding: 10px; border: 1px solid var(--c-line); border-radius: var(--radius); display: inline-block; margin-bottom: 16px; }
.pix-qr-container img { width: 180px; height: 180px; }

.copy-paste-container { display: flex; gap: 8px; }
.copy-paste-container input { flex: 1; background: var(--c-bg-alt); }
.copy-paste-container button {
  background: var(--c-blue); color: #fff; border: 0; border-radius: var(--radius); padding: 0 16px; cursor: pointer;
  font-weight: 600; display: flex; align-items: center; gap: 6px; transition: background 0.2s;
}
.copy-paste-container button:hover { background: var(--c-blue-dark); }

/* Novas adições para o Checkout de R$ 9,90 */
.price-box {
  background: var(--c-bg-alt-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 16px;
}
.price-row {
  display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 6px; color: var(--c-text-soft);
}
.price-original span { text-decoration: line-through; color: var(--c-muted); }
.price-discount { color: var(--c-green); font-weight: 600; }
.price-divider { height: 1px; background: var(--c-line); margin: 10px 0; }
.price-final { font-size: 16px; font-weight: 700; color: var(--c-text); margin-bottom: 0; }

.form-instructions { font-size: 14px; color: var(--c-text-soft); margin-bottom: 14px; }

.secure-badge { font-size: 12px; color: var(--c-muted); text-align: center; margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.secure-badge i { color: var(--c-green); }

.modal-logo { height: 24px; margin-right: 12px; }
.modal-title { flex: 1; }
