/* ═══════════════════════════════════════════════════════════
   styles.css — ARI Landing Page
   Arck1Pro · Ativo de Renda Imobiliária
═══════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg:        #001031;
  --surface:   #021545;
  --surface-2: #031963;
  --gold:      #DEAE5D;
  --gold-2:    #FAE394;
  --light:     #ECEBE7;
  --light-70:  rgba(236,235,231,0.70);
  --light-40:  rgba(236,235,231,0.40);
  --light-15:  rgba(236,235,231,0.15);
  --light-06:  rgba(236,235,231,0.06);
  --gold-line: rgba(194,143,80,0.25);
  --gold-glow: rgba(194,143,80,0.07);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

/* ─── ACESSIBILIDADE ───────────────────────────────────── */
/* NOVO: skip link, sr-only e focus-visible adicionados para acessibilidade */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .14;
  filter: saturate(.6);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-logo {
  margin-bottom: 2rem;
}
.hero-logo img {
  height: 90px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
  filter: brightness(1.15);
}

.hero-h1 {
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.022em;
  margin-bottom: 1.5rem;
}
.hero-h1 .accent {
  color: var(--gold);
  font-weight: 500;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--gold-line);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 300;
  color: var(--light);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Coluna direita do hero — vídeo VSL centralizado */
.hero-img-box {
  position: relative;
  overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem 2rem 6rem;
  background: var(--surface-2);
}

.hero-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  border-radius: 6px;
}

.hero-video-inline {
  display: none;
}

/* ─── BOTÕES ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  padding: 1rem 2.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity .22s, transform .18s;
}
.btn:hover {
  opacity: .88;
  transform: translateY(-1px);
}

/* ─── SEÇÃO — BASE ──────────────────────────────────────── */
section {
  padding: 7rem 5rem;
  position: relative;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: .75rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
/* NOVO: classe utilitária que substitui o inline style="justify-content:center" que existia no HTML */
.eyebrow-center {
  justify-content: center;
}

.eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -.015em;
  margin-bottom: .85rem;
}
.section-h2 .accent {
  color: var(--gold);
}

.section-lead {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--light-70);
  max-width: 600px;
  line-height: 1.9;
  margin-bottom: 3rem;
  font-weight: 300;
}

.gold-rule {
  width: 100%;
  height: 1px;
  background: var(--gold-line);
}

/* ─── SEÇÃO ARI (fundo claro) ───────────────────────────── */
.ari-section {
  background: #ECEBE7;
}
.ari-section .section-eyebrow {
  color: rgba(0,16,49,0.45);
  justify-content: center; /* ALTERADO: eyebrow centralizado */
}
.ari-section .eyebrow-line {
  background: rgba(0,16,49,0.25);
}
.ari-section .section-h2 {
  color: #001031;
  text-align: center; /* ALTERADO: título centralizado */
}
.ari-section .section-h2 .accent {
  color: var(--gold);
}
.ari-section .section-lead {
  color: rgba(0,16,49,0.6);
  margin-bottom: 2rem; /* reduzido para aproximar do grid de parágrafos */
  text-align: center; /* ALTERADO: subtítulo centralizado */
  max-width: 640px;   /* NOVO: limita largura para melhor leitura */
  margin-left: auto;
  margin-right: auto;
}

/* ALTERADO: grid apenas para os parágrafos — eyebrow/h2/lead ficam fora em largura total */
.ari-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.ari-body p {
  font-size: 1.05rem;
  color: rgba(0,16,49,0.68);
  line-height: 1.95;
  margin-bottom: 1.75rem;
  font-weight: 300;
  text-align: justify; /* ALTERADO: texto justificado */
}
.ari-body p strong {
  color: #001031;
  font-weight: 500;
}

/* ALTERADO: agora grid de 3 colunas horizontais abaixo do texto */
.ari-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

/* Botão centralizado abaixo dos destaques */
.ari-cta {
  margin-top: 2.5rem;
  text-align: center; /* ALTERADO: botão centralizado */
}

.ari-hl {
  border-left: 2px solid var(--gold);
  padding: 1.5rem 1.75rem;
  background: rgba(0,16,49,0.05);
}
.ari-hl-number {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem); /* ajustado para layout horizontal */
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}
.ari-hl-label {
  font-size: 1rem;
  color: rgba(3, 3, 3, 0.55);
  line-height: 1.5;
  font-weight: 300;
}

/* ─── SEÇÃO LITORAL ─────────────────────────────────────── */
/* ALTERADO: padding removido — imagem sangra até a borda esquerda da tela */
.litoral-section {
  background: var(--bg);
  padding: 0;
  overflow: hidden;
}

/* ALTERADO: sem gap — colunas coladas; imagem estica para preencher toda a linha */
.litoral-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 720px;
}

/* ALTERADO: clip-path cria a borda diagonal direita — recorte na borda da foto */
/* NOVO: borda direita da imagem vai de 100% no topo a 82% na base = diagonal \ */
.litoral-img-box {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}
.litoral-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.litoral-img-label {
  position: absolute;
  bottom: 1rem; left: 1rem;
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0,16,49,0.85);
  padding: .35rem .8rem;
  z-index: 1;
}

/* Coluna de conteúdo */
.litoral-content {
  position: relative;
  z-index: 1;
  padding: 7rem 5rem;
}

.litoral-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.75rem;
}
.stat-box {
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
}
.stat-number {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label {
  font-size: .99rem;
  color: var(--light);
  line-height: 1.5;
  font-weight: 400;
}
.stat-source {
  font-size: .83rem;
  color: var(--light);
  line-height: 1.4;
  font-weight: 400;
  margin-top: .25rem;
}

.litoral-text {
  font-size: 1rem;
  color: var(--light);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* ─── SIMULADOR ─────────────────────────────────────────── */
.simulator-section {
  background: var(--surface);
}

.simulator-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.simulator-header .section-eyebrow {
  justify-content: center;
}
.simulator-header .section-h2 {
  margin: 0 auto;
}
.simulator-header .section-lead {
  margin: .5rem auto 0;
  text-align: center;
}

.sim-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--gold-line);
  overflow: hidden;
}

.sim-controls {
  padding: 3rem;
  background: var(--bg);
  border-right: 1px solid var(--gold-line);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sim-field-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: block;
}

.sim-capital-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--gold-line);
  background: var(--surface);
  overflow: hidden;
}
.sim-capital-prefix {
  padding: .85rem 1.1rem;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
  border-right: 1px solid var(--gold-line);
  white-space: nowrap;
  background: var(--gold-glow);
}
.sim-capital-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--light);
  padding: .85rem 1.1rem;
}
.sim-capital-input::placeholder {
  color: var(--light-40);
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  background: var(--gold-line);
  outline: none;
  cursor: pointer;
  margin-top: 1rem;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  border: 2.5px solid var(--bg);
  box-shadow: 0 0 0 1px var(--gold);
  cursor: pointer;
  transition: transform .15s;
}
input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  border: 2.5px solid var(--bg);
  cursor: pointer;
}

.sim-range-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: .6rem;
}
.sim-range-tick {
  font-size: .78rem;
  color: var(--light-40);
}

.sim-toggle-group {
  display: flex;
  border: 1px solid var(--gold-line);
  overflow: hidden;
}
.sim-toggle {
  flex: 1;
  padding: .85rem .5rem;
  background: none;
  border: none;
  border-right: 1px solid var(--gold-line);
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  color: var(--light-40);
  cursor: pointer;
  transition: background .2s, color .2s;
  text-align: center;
}
.sim-toggle:last-child {
  border-right: none;
}
.sim-toggle.active {
  background: var(--gold);
  color: var(--bg);
}
.sim-toggle:not(.active):hover {
  background: var(--gold-glow);
  color: var(--light);
}

/* NOVO: classe que substitui o inline style="font-size:.82rem;color:var(--light-40);..." do simulador */
.sim-min-warning {
  font-size: .82rem;
  color: #ff8a80;
  margin-top: .55rem;
  font-weight: 400;
  line-height: 1.4;
}

.sim-modo-desc {
  font-size: .82rem;
  color: var(--light);
  margin-top: .85rem;
  line-height: 1.55;
  font-weight: 300;
}

.sim-results {
  padding: 3rem;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sim-taxa-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border: 1px solid var(--gold-line);
  padding: .5rem 1rem;
  margin-bottom: 2rem;
  align-self: flex-start;
}
.sim-taxa-badge-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--light-40);
}
.sim-taxa-badge-value {
  font-size: .92rem;
  font-weight: 600;
  color: var(--gold);
}

.sim-main-result {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  margin-bottom: 2rem;
}
.sim-main-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.sim-main-value {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
}
.sim-main-sub {
  font-size: .82rem;
  color: var(--light-40);
  margin-top: .6rem;
  font-weight: 300;
}

.sim-rows {
  display: flex;
  flex-direction: column;
}
.sim-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-06);
}
.sim-row:last-child {
  border-bottom: none;
}
.sim-row-label {
  font-size: .88rem;
  color: var(--light);
  font-weight: 300;
}
.sim-row-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--light);
}
.sim-row-value.hi {
  color: var(--gold);
}

.sim-disclaimer {
  font-size: .90rem;
  color: var(--light);
  text-align: center;
  margin-top: 1.75rem;
  font-weight: 300;
  line-height: 1.65;
}

.simulator-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-section {
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 5rem;
  align-items: start;
}

.faq-sidebar .section-h2 {
  margin-bottom: 1rem;
}
.faq-sidebar p {
  font-size: 1rem;
  color: var(--light);
  line-height: 1.85;
  margin-bottom: 2rem;
  font-weight: 300;
}

.faq-list {
  list-style: none;
}
.faq-item {
  border-bottom: 1px solid var(--light-06);
}
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--light);
  transition: color .2s;
}
.faq-btn:hover {
  color: var(--gold);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-style: normal;
  color: var(--gold);
  transition: transform .28s;
  user-select: none;
}

.faq-answer {
  display: none;
  padding-bottom: 1.4rem;
  font-size: 1rem;
  color: var(--light);
  line-height: 1.9;
  font-weight: 300;
}

.faq-item.open .faq-answer {
  display: block;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-bottom {
  text-align: center;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--gold-line);
}

/* ─── FORMULÁRIO CTA ────────────────────────────────────── */
.cta-section {
  background: var(--surface);
  text-align: center;
}

.cta-section .section-h2 {
  max-width: 680px;
  margin: 0 auto;
}

.cta-sub {
  font-size: 1rem;
  color: var(--light-70);
  margin: 1.25rem auto 0;
  max-width: 480px;
  line-height: 1.9;
  font-weight: 300;
}

.cta-form {
  max-width: 540px;
  margin: 3rem auto 0;
  text-align: left;
}

.form-row {
  margin-bottom: 1.35rem;
}

.form-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .55rem;
}

.form-input,
.form-select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--gold-line);
  color: var(--light);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  padding: .95rem 1.2rem;
  outline: none;
  transition: border-color .22s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder {
  color: var(--light-40);
}
.form-input:focus,
.form-select:focus {
  border-color: var(--gold);
}
.form-select option {
  background: var(--bg);
}

.form-submit {
  width: 100%;
  margin-top: .25rem;
}
/* NOVO: estado desabilitado enquanto o formulário está sendo enviado */
.form-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

/* NOVO: feedback visual de sucesso/erro exibido abaixo dos campos (substitui o alert) */
.form-feedback {
  padding: 1rem 1.2rem;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1rem;
  border-left: 3px solid;
}
.form-feedback--ok {
  background: rgba(194,143,80,.1);
  border-color: var(--gold);
  color: var(--gold-2);
}
.form-feedback--err {
  background: rgba(220,50,50,.08);
  border-color: rgba(220,50,50,.6);
  color: #ffaaaa;
}

/* ─── RODAPÉ ────────────────────────────────────────────── */
footer {
  background: #000c20;
  padding: 2.75rem 5rem;
  border-top: 1px solid var(--gold-line);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ALTERADO: substituído span de texto pelo bloco logos + redes sociais */
.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex-shrink: 0;
}

/* NOVO: logos lado a lado com separador */
.footer-logos {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-logo-ari {
  height: 36px;
  width: auto;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}

.footer-logo-arck {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1) opacity(.65);
}

.footer-logos-sep {
  width: 1px;
  height: 28px;
  background: var(--gold-line);
  flex-shrink: 0;
}

/* NOVO: ícones de redes sociais */
.footer-social {
  display: flex;
  gap: .75rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-line);
  color: var(--light-40);
  transition: color .22s, border-color .22s;
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-legal {
  font-size: .82rem;
  color: var(--light-40);
  line-height: 1.75;
  max-width: 640px;
  font-weight: 300;
}

/* ─── RESPONSIVO ────────────────────────────────────────── */
@media (max-width: 960px) {
  section {
    padding: 5rem 1.75rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
  }

  .hero-copy {
    padding: 4rem 1.75rem;
    text-align: center;
    align-items: center;
  }

  .hero-logo img {
    margin: 0 auto;
  }

  .hero-img-box {
    display: none;
  }

  .hero-video-inline {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    margin: 1.5rem 0;
  }

  .hero-video-inline iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }

  .litoral-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* ALTERADO: sem diagonal em mobile + aspect-ratio para dar altura */
  .litoral-img-box {
    aspect-ratio: 16/9;
    clip-path: none;
  }

  /* NOVO: padding próprio em mobile (section-inner foi removido) */
  .litoral-content {
    padding: 4rem 1.75rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .litoral-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* ari-body-grid colapsa para coluna única em mobile */
  .ari-body-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* highlights também colapsam para coluna única em mobile */
  .ari-highlights {
    grid-template-columns: 1fr;
  }

  .sim-box {
    grid-template-columns: 1fr;
  }
  .sim-controls {
    padding: 1.5rem;
    gap: 1.5rem;
    border-right: none;
    border-bottom: 1px solid var(--gold-line);
  }
  .sim-results {
    padding: 1.5rem;
  }
  .sim-taxa-badge {
    margin-bottom: 1.25rem;
  }
  .sim-main-result {
    padding: 1.25rem 0;
    margin-bottom: 1.25rem;
  }
  .sim-row {
    flex-wrap: wrap;
    gap: .2rem;
  }

  footer {
    padding: 2.5rem 1.75rem;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-h1 {
    font-size: 2.5rem;
  }
  .litoral-stats {
    grid-template-columns: 1fr;
  }

  .sim-controls {
    padding: 0.5rem;
    gap: 1.25rem;
  }
  .sim-results {
    padding: 1.1rem;
  }
  .sim-main-value {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }
  .sim-range-tick {
    font-size: .70rem;
  }
  .sim-row-label {
    font-size: .80rem;
  }
  .sim-row-value {
    font-size: .88rem;
    white-space: nowrap;
  }
  .sim-toggle {
    font-size: .78rem;
    padding: .75rem .3rem;
  }
}
