/* Cadastro — layout split + planos */

.cg-cadastro-page.empresa-auth-split {
  width: min(1180px, calc(100% - 1.5rem));
  /* minmax(0, …) evita o painel visual estourar a coluna e cortar o carrossel */
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
  min-height: min(720px, calc(100dvh - 2.5rem));
}

.cg-cadastro-form-panel {
  justify-content: flex-start;
  padding-top: clamp(1.35rem, 3vw, 2rem);
  padding-bottom: clamp(1.35rem, 3vw, 2rem);
}

.cg-cadastro-form {
  width: 100%;
  max-width: 100%;
}

.cg-planos-escolha {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  color: var(--auth-text, #e2e8f0);
}

html[data-theme="light"] .cg-planos-escolha {
  color: #0f172a;
}

.cg-planos-escolha__hint {
  font-weight: 500;
  font-size: 0.85rem;
  color: #94a3b8;
}

html[data-theme="light"] .cg-planos-escolha__hint {
  color: #64748b;
}

.cg-cadastro-step-label {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: var(--auth-text, #e2e8f0);
}

html[data-theme="light"] .cg-cadastro-step-label {
  color: #0f172a;
}

.cg-plano-resumo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 2px solid #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  font-size: 0.9rem;
}

html[data-theme="light"] .cg-plano-resumo {
  background: #e0f2fe;
  border-color: #0284c7;
  color: #0c4a6e;
}

.cg-plano-resumo__label {
  color: #94a3b8;
  font-weight: 500;
}

html[data-theme="light"] .cg-plano-resumo__label {
  color: #0369a1;
}

.cg-plano-resumo__preco {
  margin-left: auto;
  font-weight: 800;
  font-size: 1.05rem;
}

.cg-plano-card__selected-mark {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 1.15rem;
  color: #38bdf8;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

html[data-theme="light"] .cg-plano-card__selected-mark {
  color: #0284c7;
}

.cg-cadastro-dados.is-awaiting-plano {
  opacity: 0.72;
}

.cg-cadastro-submit:disabled,
.cg-cadastro-submit[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.15);
}

.cg-planos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

@media (max-width: 900px) {
  .cg-cadastro-page.empresa-auth-split {
    grid-template-columns: 1fr;
  }

  .cg-planos-grid {
    grid-template-columns: 1fr;
  }

  .cg-cadastro-dados {
    grid-template-columns: 1fr !important;
  }
}

.cg-plano-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 18px 12px 14px;
  padding-top: 22px;
  border-radius: 14px;
  border: 2px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.35);
  cursor: pointer;
  min-height: 100%;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

html[data-theme="light"] .cg-plano-card {
  background: #fff;
  border-color: #e2e8f0;
}

.cg-plano-card__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cg-plano-card:hover {
  border-color: rgba(56, 189, 248, 0.65);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.35);
}

html[data-theme="light"] .cg-plano-card:hover {
  box-shadow: 0 14px 32px rgba(14, 165, 233, 0.2);
}

.cg-plano-card.is-selected {
  border-color: #38bdf8;
  border-width: 3px;
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.45), 0 12px 28px rgba(14, 165, 233, 0.25);
  background: rgba(56, 189, 248, 0.08);
}

html[data-theme="light"] .cg-plano-card.is-selected {
  border-color: #0284c7;
  background: #f0f9ff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.2), 0 8px 24px rgba(14, 165, 233, 0.18);
}

.cg-plano-card.is-selected .cg-plano-card__selected-mark {
  opacity: 1;
  transform: scale(1);
}

.cg-plano-card.is-selected:hover {
  transform: translateY(-6px) scale(1.015);
}

@media (prefers-reduced-motion: reduce) {
  .cg-plano-card,
  .cg-plano-card:hover,
  .cg-plano-card.is-selected:hover {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    transform: none;
  }
}

.cg-plano-card__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1e293b;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.45);
  max-width: calc(100% - 8px);
  overflow: hidden;
  text-overflow: ellipsis;
}

.cg-plano-card__badge--popular {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.45);
}

.cg-plano-card__badge--value {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.cg-plano-card__tier {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-top: 2px;
  text-align: center;
}

.cg-plano-card__period {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 10px;
  text-align: center;
}

html[data-theme="light"] .cg-plano-card__period {
  color: #334155;
}

.cg-plano-card__price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 0 0 10px;
  padding: 16px 8px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.22), rgba(52, 211, 153, 0.18));
  border: 1px solid rgba(56, 189, 248, 0.35);
}

html[data-theme="light"] .cg-plano-card__price-wrap {
  background: linear-gradient(145deg, #e0f2fe, #ecfdf5);
  border-color: #7dd3fc;
}

.cg-plano-card__price-currency,
.cg-plano-card__currency {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.85;
}

.cg-plano-card__price {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #f8fafc;
}

html[data-theme="light"] .cg-plano-card__price {
  color: #0f172a;
}

.cg-plano-card__parcelas {
  display: block;
  margin-top: auto;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.25;
  color: #1c1917;
  background: linear-gradient(135deg, #fde68a, #fbbf24);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

html[data-theme="dark"] .cg-plano-card__parcelas {
  color: #1c1917;
}

.cg-plano-card.is-recommended .cg-plano-card__parcelas {
  background: linear-gradient(135deg, #7dd3fc, #38bdf8);
  color: #0c4a6e;
}

.cg-plano-card__hint {
  font-size: 0.7rem;
  color: #94a3b8;
  text-align: center;
  line-height: 1.35;
  margin-top: 0.45rem;
}

.cg-plano-card:not(:has(.cg-plano-card__parcelas)) .cg-plano-card__hint {
  margin-top: auto;
}

.cg-plano-card.is-recommended .cg-plano-card__tier {
  color: #38bdf8;
}

.cg-cadastro-dados {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 0;
}

.cg-cadastro-dados.empresa-auth-split__card {
  padding: 1.1rem 1.15rem 1.15rem;
}

.cg-cadastro-dados__field {
  min-width: 0;
}

.cg-cadastro-dados__field .form-label {
  margin-bottom: 0.35rem;
}

.cg-cadastro-dados__field small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
}

.cg-cadastro-submit.empresa-auth-split__submit {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
  font-size: 1rem;
}

.cg-cadastro-visual.empresa-auth-split__visual {
  position: relative;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 0;
  /* Sobrescreve aspect-ratio 4/5 do auth: no cadastro a coluna é alta e o ratio
     forçava largura maior que a grade → overflow + caption/dots cortados à direita. */
  aspect-ratio: auto;
  background: #0a0f1c;
  overflow: hidden;
}

.cg-cadastro-visual .empresa-auth-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.cg-cadastro-visual .empresa-auth-carousel__slide img {
  object-fit: contain;
  object-position: center center;
}

.cg-cadastro-visual .empresa-auth-carousel__captions {
  left: 1rem;
  right: 1rem;
  bottom: 2.65rem;
  width: auto;
  max-width: none;
  margin-inline: 0;
  box-sizing: border-box;
}

.cg-cadastro-visual .empresa-auth-carousel__caption {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}

.cg-cadastro-visual .empresa-auth-carousel__dots {
  left: 50%;
  right: auto;
  bottom: 1.1rem;
  transform: translateX(-50%);
}

.cg-cadastro-visual .empresa-auth-split__caption h3 {
  font-size: 1rem;
}

.cg-cadastro-visual .empresa-auth-split__caption p {
  font-size: 0.84rem;
  line-height: 1.4;
}

/* Vantagens × possibilidades */
.cg-cadastro-value {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  margin: 0 0 1.15rem;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.35);
}

html[data-theme="light"] .cg-cadastro-value {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.cg-cadastro-value__title {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

html[data-theme="light"] .cg-cadastro-value__title {
  color: #64748b;
}

.cg-cadastro-value__list {
  margin: 0;
  padding-left: 1.05rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--auth-text, #e2e8f0);
}

html[data-theme="light"] .cg-cadastro-value__list {
  color: #334155;
}

.cg-cadastro-value__list li + li {
  margin-top: 0.2rem;
}

@media (max-width: 520px) {
  .cg-cadastro-value {
    grid-template-columns: 1fr;
  }
}

/* Links abaixo do formulário */
.cg-cadastro-links {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
}

.cg-login-links__muted {
  font-weight: 500 !important;
  font-size: 0.9rem;
  opacity: 0.9;
}

.cg-cadastro-links a {
  color: var(--auth-link, #38bdf8);
  text-decoration: none;
  font-weight: 600;
}

.cg-cadastro-links a:hover {
  text-decoration: underline;
}

.cg-cadastro-links__product {
  border: 0;
  background: none;
  padding: 0;
  color: var(--auth-link, #0ea5e9);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cg-cadastro-links__product:hover {
  color: #0284c7;
}

html:not([data-theme="light"]) .cg-cadastro-links__product {
  color: #7dd3fc;
}

/* Tour do produto */
body.cg-produto-tour-open {
  overflow: hidden;
}

.cg-produto-tour {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cg-produto-tour[hidden] {
  display: none !important;
}

.cg-produto-tour__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 20, 0.72);
  backdrop-filter: blur(4px);
}

.cg-produto-tour__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(92dvh, 820px);
  overflow: auto;
  border-radius: 18px;
  background: #0f172a;
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
}

html[data-theme="light"] .cg-produto-tour__dialog {
  background: #fff;
  color: #0f172a;
}

.cg-produto-tour__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem 0.75rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.cg-produto-tour__header h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.cg-produto-tour__header p {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: #94a3b8;
}

.cg-produto-tour__close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cg-produto-tour__close:hover {
  background: rgba(248, 113, 113, 0.12);
  border-color: rgba(248, 113, 113, 0.45);
  color: #f87171;
}

.cg-produto-tour__carousel {
  padding: 0.85rem 1.1rem 1.15rem;
}

.cg-produto-tour__slides {
  position: relative;
  min-height: 420px;
}

.cg-produto-tour__slide {
  display: none;
  animation: cgProdutoFade 0.35s ease;
}

.cg-produto-tour__slide.is-active {
  display: block;
}

@keyframes cgProdutoFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.cg-produto-tour__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: 0.5rem 0 0.75rem;
}

.cg-produto-tour__caption {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 0.75rem;
}

.cg-produto-tour__caption h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.cg-produto-tour__caption p {
  margin: 0;
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.45;
}

.cg-produto-tour__footer {
  display: flex;
  justify-content: center;
  padding: 0 1.25rem 1.25rem;
}

.cg-produto-tour__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 1.25rem;
  border-radius: 10px;
  border: 0;
  background: #0284c7;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none !important;
  cursor: pointer;
}

.cg-produto-tour__cta:hover {
  background: #0369a1;
  color: #fff !important;
}

.cg-produto-tour__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cg-produto-tour__btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(56, 189, 248, 0.08);
  color: #38bdf8;
  cursor: pointer;
}

.cg-produto-tour__btn:hover {
  background: rgba(56, 189, 248, 0.18);
}

.cg-produto-tour__dots {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 280px;
}

.cg-produto-tour__dot {
  width: 22px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
  padding: 0;
  cursor: pointer;
}

.cg-produto-tour__dot.is-active {
  background: #38bdf8;
  width: 28px;
}

/* Device frames */
.cg-device {
  width: 100%;
  max-width: 720px;
}

.cg-device__bezel {
  background: #1e293b;
  border-radius: 14px;
  padding: 10px 12px 14px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

html[data-theme="light"] .cg-device__bezel {
  background: #e2e8f0;
}

.cg-device__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
  margin-bottom: 8px;
}

.cg-device--tablet {
  max-width: 520px;
}

.cg-device--tablet .cg-device__bezel {
  border-radius: 18px;
  padding: 12px 14px 16px;
}

.cg-device--mobile {
  max-width: 280px;
}

.cg-device--mobile .cg-device__bezel {
  border-radius: 22px;
  padding: 14px 10px 18px;
}

.cg-device__screen {
  background: #f8fafc;
  color: #0f172a;
  border-radius: 8px;
  overflow: hidden;
  min-height: 220px;
}

.cg-device--mobile .cg-device__screen {
  min-height: 320px;
  border-radius: 12px;
}

.cg-produto-tour__multi {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

.cg-produto-tour__multi .cg-device--desktop {
  max-width: 340px;
  flex: 1 1 280px;
}

.cg-produto-tour__multi .cg-device--tablet {
  max-width: 220px;
  flex: 0 1 200px;
}

.cg-produto-tour__multi .cg-device--mobile {
  max-width: 120px;
  flex: 0 0 110px;
}

.cg-produto-tour__multi .cg-device__bezel {
  padding: 6px;
}

.cg-produto-tour__multi .cg-device__label {
  display: none;
}

.cg-produto-tour__multi .cg-device__screen {
  min-height: 140px;
  transform-origin: top center;
}

.cg-produto-tour__multi .cg-device--mobile .cg-device__screen {
  min-height: 180px;
}

/* Mock app UI */
.cg-mock {
  font-size: 0.68rem;
  line-height: 1.3;
}

.cg-mock__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: #0f172a;
  color: #e2e8f0;
  font-weight: 600;
}

.cg-mock__brand i {
  color: #38bdf8;
  margin-right: 4px;
}

.cg-mock__body {
  padding: 10px;
  background: #f1f5f9;
}

.cg-mock__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}

.cg-device--mobile .cg-mock__metrics {
  grid-template-columns: repeat(2, 1fr);
}

.cg-mock__metric {
  background: #fff;
  border-radius: 8px;
  padding: 6px 7px;
  border-left: 3px solid #94a3b8;
}

.cg-mock__metric small {
  display: block;
  color: #64748b;
  font-size: 0.58rem;
}

.cg-mock__metric strong {
  font-size: 0.72rem;
}

.cg-mock__metric--green { border-left-color: #22c55e; }
.cg-mock__metric--red { border-left-color: #ef4444; }
.cg-mock__metric--blue { border-left-color: #0ea5e9; }
.cg-mock__metric--amber { border-left-color: #f59e0b; }

.cg-mock__chart {
  height: 72px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent 40%, rgba(14, 165, 233, 0.15)),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 18px,
      rgba(148, 163, 184, 0.2) 18px,
      rgba(148, 163, 184, 0.2) 19px
    ),
    linear-gradient(135deg, #bae6fd, #e0f2fe);
  position: relative;
  overflow: hidden;
}

.cg-mock__chart::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 35%;
  height: 2px;
  background: #0ea5e9;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.2);
  transform: rotate(-8deg);
}

.cg-mock__table {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  border-collapse: collapse;
  overflow: hidden;
}

.cg-mock__table th,
.cg-mock__table td {
  padding: 5px 6px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}

.cg-mock__table th {
  background: #e2e8f0;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.cg-mock__table .text-end { text-align: right; }
.cg-mock__table .text-success { color: #16a34a; font-weight: 700; }
.cg-mock__table .text-danger { color: #dc2626; font-weight: 700; }

.cg-mock__split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 8px;
}

.cg-mock__list-item {
  background: #fff;
  border-radius: 8px;
  padding: 7px 8px;
  margin-bottom: 5px;
  border: 1px solid #e2e8f0;
  font-weight: 600;
}

.cg-mock__list-item small {
  display: block;
  color: #64748b;
  font-weight: 500;
  margin-top: 2px;
}

.cg-mock__list-item.is-active {
  border-color: #38bdf8;
  background: #e0f2fe;
}

.cg-mock__mini-chart {
  min-height: 110px;
  border-radius: 8px;
  background: linear-gradient(180deg, #dbeafe, #eff6ff);
  border: 1px solid #bfdbfe;
}

.cg-mock__card-ui {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cg-mock__cc {
  background: linear-gradient(135deg, #1e3a5f, #0ea5e9);
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cg-mock__cc--alt {
  background: linear-gradient(135deg, #334155, #64748b);
}

.cg-mock__note {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 0.62rem;
}

.cg-mock__note--center {
  text-align: center;
  margin-top: 12px;
  font-size: 0.72rem;
}

.cg-mock__evo-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
}

.cg-mock__evo-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #38bdf8, #0ea5e9);
}

.cg-mock__devices-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 18px 8px 4px;
}

.cg-mock__device-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #cbd5e1;
  font-weight: 700;
  font-size: 0.72rem;
}

@media (max-width: 640px) {
  .cg-produto-tour__slides {
    min-height: 360px;
  }

  .cg-mock__metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .cg-mock__split {
    grid-template-columns: 1fr;
  }
}
