/**
 * CAMINHO: /assets/css/pwa.css
 * FINALIDADE: Estilos do PWA (vitrine/operador) — isolado do painel
 * DATA: 2026-02-10
 */

:root {
  --card-radius: 14px;
}

body {
  background: #f7f7f7;
}

.card {
  border-radius: var(--card-radius);
}

/* status */
.badge-status {
  font-size: .75rem;
}

/* thumb */
.thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-top-left-radius: var(--card-radius);
  border-top-right-radius: var(--card-radius);
}

/* flip (LEGADO REMOVIDO)
   Motivo: havia 2 implementações concorrentes (flip-card vs flip-wrap).
   O index-2.php usa apenas flip-wrap/flip-inner/flip-face.
   Mantemos somente a versão nova para evitar conflito e “vazamento” de faces. */

/* melhora toque no mobile */
.carousel {
  touch-action: pan-y;
}

/* =========================
   SIMULADOR (MODAL SWEET) — conforme simulador.pdf
   Assets: assets/img/pwa/ (calc-logo-1.png, calc-logo-purple-1.png, calc-logo-purple-2.png)
   ========================= */

.sim-swal-popup {
  border-radius: 22px !important;
  padding: 0 !important;
  overflow: hidden !important;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.sim-card {
  padding: 18px 18px 16px;
  background: #fff;
}

.sim-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0 10px;
}

.sim-logo {
  width: 132px;
  height: auto;
  object-fit: contain;
  display: block;
}

.sim-field {
  margin-bottom: 12px;
}

.sim-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1f2937;
}

.sim-input,
.sim-select {
  width: 100%;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(16, 24, 40, .16);
  padding: 0 14px;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  background: #fff;
}

.sim-input[readonly] {
  opacity: .85;
  background: #f4f4f6;
}

.sim-row-icons {
  display: flex;
  justify-content: center;
  margin: 8px 0 8px;
}

.sim-ico {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.sim-btn {
  width: 100%;
  height: 50px;
  border-radius: 16px;
  border: 0;
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sim-btn-primary {
  background: #5B2EFF;
  /* roxo do layout */
  color: #fff;
  margin-top: 6px;
}

.sim-btn-green {
  background: #0AA34B;
  color: #fff;
  margin-top: 10px;
}

.sim-btn-outline {
  background: transparent;
  border: 2px solid rgba(16, 24, 40, .14);
  color: #111827;
  margin-top: 10px;
}

.sim-link {
  width: 100%;
  border: 0;
  background: transparent;
  color: #6b7280;
  font-weight: 700;
  margin-top: 10px;
}

.sim-result {
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  background: #f6f6f8;
  border: 1px solid rgba(16, 24, 40, .08);
}

.sim-result-title {
  font-size: 14px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 10px;
}

.sim-result-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.sim-result-text {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
}


/* =========================
   STORIES (carrossel estilo Instagram)
   ========================= */
.progress-story {
  height: 4px;
}

.story-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  pointer-events: none;
  /* não bloqueia swipe/clique */
}

.story-bars {
  display: flex;
  gap: 6px;
  padding: 10px 10px 0 10px;
}

.story-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, .35);
  border-radius: 999px;
  overflow: hidden;
}

.story-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 999px;
}


/**
 * CAMINHO: /assets/css/pwa.css
 * FINALIDADE: Estilos do PWA Vitrine (index-2.php) — isolado do painel
 * DATA: 2026-02-12
 */

/* Montserrat (local) — caminhos relativos ao /assets/css */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100 900;
  src: url('../fonts/montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat/static/Montserrat-Regular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/montserrat/static/Montserrat-SemiBold.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/montserrat/static/Montserrat-Bold.ttf') format('truetype');
  font-display: swap;
}

:root {
  --bg: #F7F7F8;
  --card: #FFFFFF;
  --border: #E6E7E8;
  --text: #111827;
  --muted: #6B7280;
  --radius: 20px;
  --radius-sm: 17px;
  --shadow: 0 10px 28px rgba(16, 24, 40, .08);
  --shadow2: 0 6px 18px rgba(16, 24, 40, .07);
  --shadow3: 0 3px 1px rgba(16, 24, 40, .06);
}

html,
body {
  height: 100%;
}

body {
  background: var(--bg);
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
}

/* container “mobile” */
.wrap {
  max-width: 440px;
  margin: 0 auto;
  padding: 0 14px 28px;
  /* sem padding-top para colar o topo */
}

/* card padrão */
.card-soft {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow3);
}

/* ===== TOPO (colado no topo, full-bleed) ===== */

.pwa-top {
  background: #fff;
  margin: 0 -14px 0;
  padding: 10px 14px 14px;
  border-radius: 0 0 var(--radius) var(--radius);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 3px 1px rgba(16, 24, 40, .06);
}

.pwa-top-line {
  margin-top: 8px;
}

.pwa-top-row4 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.pill-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  /* dimensões do asset */
  width: 86px;
  height: 34px;
  /* BG fiel ao layout */
  background: url('../img/pwa/bg_pill_top.png') no-repeat center / contain;
  border: 0;
  border-radius: 0;
  /* quem manda é o PNG */
  font-weight: 800;
  font-size: 12px;
}


.pill-time img {
  width: 16px;
  height: 16px;
  /* object-fit: contain; */
}

.pill-time span {
  line-height: 1;
}

.logo {
  height: 28px;
  object-fit: contain;
}

.subver {
  font-size: 11px;
  color: var(--muted);
}

.hello {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.2px;
  line-height: 1.1;
}

.welcome {
  margin-top: 2px;
  font-size: 18px;
  /* font-weight: 700; */
  color: var(--muted);
}

.login-icon img {
  width: 51px;
  height: 52px;
  object-fit: contain;
}

/* quick tray */
.quick-wrap {
  position: relative;
  /* margin-top: 12px; */
}

/* tray com animação (mais suave e perceptível) */
.quick-tray {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 420ms ease, opacity 420ms ease, transform 420ms ease;
  margin-top: 10px;
}

.quick-tray.is-open {
  max-height: 140px;
  /* suficiente pros 4 botões */
  opacity: 1;
  transform: translateY(0);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 8px 0 0;
}

.qbtn {
  width: 66px;
  height: 66px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow2);
  margin: 0 auto;
}

.qbtn img {
  width: 58px;
  height: 56px;
  object-fit: contain;
  display: block;
}

/* handle dos atalhos: área grande + seta animada */
.toggle-handle {
  /* width: 100%; */
  /* height: 44px; */
  border: 0;
  background: transparent;
  margin: 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;

}

.toggle-arrow {
  width: 45px;
  height: 45px;
  object-fit: contain;
  display: block;

  /* “movimento” chamando atenção */
  animation: pwaArrowFloat 1.2s ease-in-out infinite;
  transition: transform 220ms ease;
}

@keyframes pwaArrowFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* quando aberto: seta gira e para de “flutuar” */
.toggle-handle.is-open .toggle-arrow {
  animation: none;
  transform: rotate(180deg);
}


/* ===== SEARCH ===== */
.search-card {
  margin-top: 14px;
  padding: 14px;
}

.search-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.form-select {
  border-radius: 14px;
  border-color: var(--border);
  height: 46px;
  /* font-weight: 700; */
  font-size: 16px;
}

.search-btn {
  height: 43px;
  width: 75px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn-img {
  object-fit: contain;
  display: block;
  width: 75px;
  height: 43px;
}

/* ===== CARD VEÍCULO (mantido do protótipo) ===== */
.v-card {
  margin-top: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow3);
}

/* topo do card com “respiro” (não colado nas bordas) */

.v-top {
  position: relative;
  padding: 8px;
  /* exigência */
  background: transparent;
}

/* container da mídia (fundo azul + radius) */

.v-media {
  position: relative;
  background: #CAD8FF;
  border-radius: 18px;
  /* arredondado em todos os lados */
  overflow: hidden;
  height: 214px;
  /* mantém proporção do layout */
  display: flex;
  align-items: center;
  justify-content: center;
}

.v-photo {
  width: 243px;
  height: 149px;
  object-fit: contain;
  display: block;
}

/* badge: somente imagem, agora à direita (onde era o like) */
.v-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  height: 28px;
  width: auto;
  object-fit: contain;
}

/* like: somente imagem (sem botão/sem bg/sem borda) */
.v-like {
  position: absolute;
  right: 12px;
  top: 55px;
  width: 27px;
  height: 27px;
  object-fit: contain;
  cursor: pointer;
}


.v-body {
  padding: 0 14px 14px 12px;
}

.v-brand {
  /* font-weight: 900; */
  font-size: 20px;
  color: var(--muted);
  /* text-transform: uppercase; */
  letter-spacing: .25px;
}

.v-title {
  display: flex;
  align-items: baseline;
  /* justify-content: space-between; */
  gap: 10px;
  margin-top: -5px;
}

.v-year {
  color: var(--muted);
  /* font-weight: 800; */
  font-size: 14px;
  white-space: nowrap;
}

.v-name {
  font-size: 18px;
  font-weight: 600;
  /* margin-top: 2px; */
  letter-spacing: -.2px;
}

.specs {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  top: 10px;

  /* base para posicionamento fixo do flip */
  position: relative;
  padding-right: 38px;
  /* reserva espaço pro flip não colidir com conteúdo */
}

/* flip fixo (não “anda” com wrap) */
.spec-flip {
  position: absolute;
  right: 0;
  top: 0;
  /* referencia o topo da área (mesma linha do HR) */
  z-index: 20;

  margin: 0;
  display: flex;
  align-items: center;
}

.spec {
  display: flex;
  align-items: center;
  gap: 8px;
  /* font-weight: 800; */
  color: #1f2937;
  font-size: 16px;
}

.spec img {
  width: 21px;
  height: 21px;
  object-fit: contain;
  opacity: .9;
}

.row-actions {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.type-pill {
  position: absolute;
  left: 12px;
  top: 12px;
  /* mesma altura visual do badge */
  padding: 6px 10px;
  letter-spacing: .2px;
  text-transform: uppercase;
  background: #F5BA30;
  color: #1f2937;
  border: 0;
  z-index: 3;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  z-index: 3;
}

/* Linha (HR) + Flip ancorado na direita, sem quebrar specs */
.specs-line {
  position: relative;
  width: 100%;
  margin: 5px 0 2px;
}

.specs-hr {
  width: 100%;
  height: 3px;
  border: 0;
  margin: 0;
  background: rgba(16, 24, 40, .12);
}

/* Flip flutuando (mesma posição em todos) */
.flip-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;

  /* HIT real: somente a imagem */
  width: 44px;
  height: 44px;
  padding: 0;
  box-sizing: border-box;

  display: block;
  object-fit: contain;
  cursor: pointer;

  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}


/* Flip (300ms) */
.flip-wrap {
  perspective: 1200px;
  -webkit-perspective: 1200px;
}

.flip-inner {
  position: relative;
  width: 100%;
  min-height: 360px;
  /* min-height: 400px; */
  /* reduz a “altura geral” do card */
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 300ms ease;

  /* iOS/Safari: evita vazamento/duplicação durante o 3D */
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.is-flipped .flip-inner {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}

.flip-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  /* fixa a face “front” no 3D e reduz bleed */
  transform: translateZ(0) rotateY(0deg);
  -webkit-transform: translateZ(0) rotateY(0deg);
}


/* ===== BACK (igual imagem) ===== */

.flip-back {
  transform: translateZ(0) rotateY(180deg);
  -webkit-transform: translateZ(0) rotateY(180deg);
  background: #fff;
  border-radius: var(--radius);
  padding: 12px;
}

.back-card {
  background: #efefef;
  border-radius: 15px;
  padding: 16px 16px 18px;
  position: relative;
  min-height: 290px;
}


.back-btn-seller {
  background: #0AA34B;
}

.back-btn-testdrive {
  background: #3A50FF;
}

.btn-cta {
  height: 46px;
  border-radius: 14px;
  font-weight: 900;
}

.back-top .back-brand {
  font-size: 16px;
  color: #111827;
  font-weight: 500;
}

.back-name-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: -3px;
}

.back-name-row .back-name {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  line-height: 1.1;
}

.back-name-row .back-year {
  font-size: 18px;
  font-weight: 600;
  color: #9CA3AF;
  line-height: 1.1;
}

.back-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: -7px;
}

.back-price {
  font-size: 27px;
  font-weight: 400;
  color: #6B7280;
  letter-spacing: -.4px;
}

.back-price strong {
  font-weight: 900;
  color: #111827;
}

.back-troca {
  background: #DFF3FF;
  color: #1F6B86;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
}

.back-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  /* quebra linha */
  align-items: center;
  margin-top: 5px;
}

.back-tag {
  background: #4B4B4B;
  color: #E5E7EB;
  /* font-weight: 700; */
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 4px;
  line-height: 1;
  white-space: nowrap;
}

.back-actions {
  position: relative;
  top: 16px;
  left: 0px;
  right: 16px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0;
}

.back-actions .btn-img {
  flex: 1;
  height: 50px;
  border-radius: 14px;
  border: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow3);
}

.back-btn {
  flex: 1 1 0;
  padding: 10px;
  height: 64px;
  border-radius: 10px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  /* menor (sem exagero) */
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}

.back-btn-ico {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.back-back-ico {
  width: 44px;
  height: 44px;
  display: block;
}

.back-btn b {
  /* font-weight: 900; */
}

.back-btn i {
  font-size: 22px;
}

.back-back {
  position: relative;
  /* left: -12px; */
  bottom: -22px;
  /* width: 76px; */
  /* height: 77px; */
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
}

.back-back i {
  font-size: 22px;
}

/* Toast */
.toast {
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* ===== TOAST (Topo) ===== */
.pwa-toast-wrap {
  position: fixed;
  top: 10px;
  left: 0;
  width: 100%;
  z-index: 2000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.pwa-toast {
  pointer-events: auto;
  width: min(420px, calc(100% - 28px));
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 12px 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;

  /* sem “opacity”/fade */
  opacity: 1;
  transform: none;
}

.pwa-toast.is-hidden {
  display: none;
}

.pwa-toast-avatar {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 14px;
  flex: 0 0 auto;
}

.pwa-toast-text {
  flex: 1 1 auto;
  min-width: 0;
}

.pwa-toast-line1 {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
}

.pwa-toast-line2 {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.15;
}

.pwa-toast-close {
  border: 0;
  background: transparent;
  padding: 0 6px;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  color: #111827;
  cursor: pointer;
  flex: 0 0 auto;
}

.pwa-toast-progress {
  margin-top: 10px;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #E9EAEC;
  overflow: hidden;
}

.pwa-toast-progress-bar {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: #2F56E8;
}

.pwa-toast-progress-bar.is-run {
  animation: pwaToastProgress 3000ms linear forwards;
}

@keyframes pwaToastProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* Ícones em imagem no BACK */
.back-btn-ico {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

/* =========================
   SIMULADOR (MODAL SWEET) — FIEL AO simulador.pdf
   ========================= */

.simx-swal {
  width: 420px !important;
  max-width: 92vw !important;
  padding: 0 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.simx {
  background: #fff;
}

.simx-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 14px 10px;
}

.simx-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.simx-top-left{
  width: auto;              /* deixa de ocupar 100% */
  display: flex;
  align-items: center;      /* centraliza verticalmente ícone + texto */
  justify-content: center;  /* centraliza o conjunto */
  gap: 10px;
  margin: 0 auto;           /* centraliza dentro do .simx-top */
}

.simx-top-ico {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.simx-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-block;
}

.simx-bubble-purple {
  background: #5b2eff;
  box-shadow: 0 6px 14px rgba(91, 46, 255, .25);
}

.simx-h1 {
  font-weight: 800;
  font-size: 20px;
  color: #2b2b2b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.simx-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #19b55b;
  position: relative;
}

.simx-check:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.simx-x {
  position: absolute;
  right: -15px;
  top: 0px;
  width: 30px;
  height: 30px;
  border: 0;
  background: rgba(0, 0, 0, .06);
  border-radius: 50%;
}

.simx-x:after {
  content: "×";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #777;
}

.simx-body {
  padding: 6px 18px 14px;
}

.simx-title {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  margin: 0 0 20px;
  color: #3a3a3a;
}

.simx-field {
  margin-bottom: 12px;
}

.simx-label {
  font-size: 16px;
  /* font-weight: 700; */
  color: #a0a0a0;
  margin-bottom: 6px;
}

.simx-input {
  width: 100%;
  height: 44px;
  border-radius: 6px;
  border: 1px solid #ececec;
  background: #f3f3f3;
  padding: 0 12px;
  font-weight: 700;
  color: #555;
}

.simx-label2 {
  font-size: 12px;
  font-weight: 700;
  color: #9b9b9b;
  margin-bottom: 6px;
}

.simx-row2 {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  margin-bottom: 10px;
}

.simx-col {
  flex: 1;
}

.simx-col-small {
  width: 78px;
  flex: 0 0 78px;
}

.simx-col-tick {
  width: 44px;
  flex: 0 0 44px;
}

.simx-input2 {
  width: 100%;
  height: 46px;
  border-radius: 6px;
  border: 1px solid #efefef;
  background: #f4f4f4;
  padding: 0 12px;
  font-weight: 800;
  color: #6a6a6a;
}

.simx-input2[readonly] {
  opacity: .9;
}

.simx-select2 {
  width: 100%;
  height: 46px;
  border-radius: 6px;
  border: 1px solid #efefef;
  background: #f4f4f4;
  padding: 0 10px;
  font-weight: 800;
  color: #6a6a6a;
}

.simx-tick {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #f4f4f4;
  border: 1px solid #efefef;
  position: relative;
}

.simx-tick:after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #bdbdbd;
}

.simx-actions {
  display: flex;
  gap: 10px;
  padding: 0 18px 16px;
}

.simx-btn {
  border: 0;
  height: 44px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.simx-btn-gray {
  flex: 1;
  background: #8f8f8f;
  color: #fff;
}

.simx-btn-purple {
  flex: 1;
  background: #5b2eff;
  color: #fff;
}

.simx-btn-gray2 {
  flex: 1;
  background: #9a9a9a;
  color: #fff;
}

.simx-btn-green {
  flex: 1;
  background: #13a24a;
  color: #fff;
}

.simx-ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  position: relative;
}

.simx-ico-r:after {
  content: "›";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}

.simx-ico-l:after {
  content: "‹";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}

.simx-text {
  font-size: 14px;
  color: #6c6c6c;
  line-height: 1.35;
  margin-bottom: 12px;
}

.simx-parcela-wrap {
  background: #f1f1f1;
  border: 1px solid #e9e9e9;
  border-radius: 6px;
  padding: 12px;
  margin: 10px 0 12px;
}

.simx-parcela-label {
  font-size: 14px;
  color: #7b7b7b;
  margin-bottom: 8px;
}

.simx-parcela-valor {
  font-size: 24px;
  font-weight: 700;
  color: #4d4d4d;
}

.simx-parcela-sub {
  font-size: 11px;
  color: #9b9b9b;
  margin-top: 6px;
}

.simx-text2 {
  font-size: 15px;
  color: #6c6c6c;
  line-height: 1.35;
  margin: 10px 0 14px;
}

.simx-cta {
  display: flex;
  gap: 10px;
  /* padding: 0 18px 12px; */
}

.simx-btn-blue {
  flex: 1;
  background: #2f63ff;
  color: #fff;
}

.simx-btn-green2 {
  flex: 1;
  background: #19a64c;
  color: #fff;
}

.simx-cal,
.simx-chat {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .22);
}

.simx-bottom {
  margin-top: 1.3rem !important;
  /* padding: 0 18px 16px; */
}

.simx-btn-gray3 {
  width: 100%;
  background: #9a9a9a;
  color: #fff;
}

/* Simulador - CTA em coluna (1 botão por linha) */
.simx-cta.simx-cta-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.simx-btn-ico {
  width: 22px;
  height: 22px;
  object-fit: contain;
}