/* Estrutura institucional em estilo neumorfista */
.sim-shell {
  background: var(--color-primary-200, #bfc5e8);
  border-radius: 32px;
  box-shadow:
    18px 18px 38px rgba(var(--bs-primary-rgb, 33, 40, 108), 0.12),
    -14px -14px 32px rgba(255, 255, 255, 0.95);
  overflow: hidden;
}

.sim-shell__body {
  padding: clamp(2rem, 5vw, 3.5rem);
}

/* Hero inspirado na calculadora para o simulador de consórcio */
.sim-hero {
  position: relative;
  margin: 0;
  padding: clamp(3rem, 8vw, 5.5rem) 1.5rem;
  width: 100%;
  color: #fff;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15), transparent 50%),
    linear-gradient(140deg, #202c6d 0%, #111a4b 100%);
  border-radius: 32px 32px 0 0;
  overflow: hidden;
  text-align: center;
}

.sim-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 10%, rgba(37, 99, 235, 0.25), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.sim-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.sim-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.45);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.sim-hero__title {
  margin: 1.3rem auto 1rem;
  font-size: clamp(2.3rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
}

.sim-hero__subtitle {
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  color: rgba(226, 232, 240, 0.95);
  line-height: 1.6;
  max-width: 60ch;
}

.sim-hero__highlights {
  display: grid;
  gap: 0.65rem;
  margin: 0 auto 2rem;
  padding: 0;
  list-style: none;
  max-width: 720px;
  color: rgba(226, 232, 240, 0.95);
}

.sim-hero__highlights li {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  font-weight: 600;
}

.sim-hero__highlights li::before {
  content: "\2022";
  color: #34d399;
}

.sim-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.sim-hero__cta {
  border: none;
  border-radius: 999px;
  padding: 0.95rem 2.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  background: linear-gradient(120deg, #34d399, #10b981);
  box-shadow: 0 20px 35px rgba(16, 185, 129, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sim-hero__cta:hover,
.sim-hero__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 25px 40px rgba(16, 185, 129, 0.55);
  outline: none;
}

.sim-hero__hint {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.9);
}

.sim-page {
  max-width: 960px;
  margin: 0 auto;
}

.sim-page__content {
  display: grid;
  gap: 0.85rem;
}

.sim-anchor {
  height: 1px;
  margin: 0 0 0.5rem;
}

@media (max-width: 768px) {
  .sim-shell__body {
    padding: 1.75rem;
  }

  .sim-hero {
    padding: 2.5rem 1.25rem;
  }

  .sim-hero__highlights li {
    flex-direction: column;
  }

  .sim-hero__highlights li::before {
    display: none;
  }

  .sim-page {
    padding: 0 1rem;
  }
}
