body.pre-cadastro-page .profile-selection-screen {
  border: 1px solid rgba(36, 85, 164, 0.2);
  border-radius: 22px;
  padding: clamp(1rem, 2vw, 1.4rem);
  background: linear-gradient(140deg, rgba(238, 245, 255, 0.94), rgba(255, 247, 238, 0.9));
}

body.pre-cadastro-page .profile-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

body.pre-cadastro-page a.profile-choice-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 230px;
  border-radius: 20px;
  border: 1px solid rgba(23, 63, 131, 0.24);
  background: linear-gradient(165deg, #ffffff 0%, #f5f9ff 100%);
  padding: clamp(1rem, 2.2vw, 1.4rem);
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(9, 29, 67, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.pre-cadastro-page a.profile-choice-card:hover,
body.pre-cadastro-page a.profile-choice-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(9, 29, 67, 0.18);
  border-color: #2455a4;
  outline: none;
}

body.pre-cadastro-page a.profile-choice-card strong {
  font: 800 clamp(1.35rem, 2.7vw, 1.8rem)/1.2 "Sora", sans-serif;
  color: #11356f;
  letter-spacing: -0.01em;
}

body.pre-cadastro-page a.profile-choice-card small {
  color: #365689;
  font-size: 0.98rem;
  line-height: 1.35;
}

body.pre-cadastro-page .profile-choice-tag {
  width: fit-content;
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  background: rgba(36, 85, 164, 0.14);
  color: #16448d;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 760px) {
  body.pre-cadastro-page .profile-choice-grid {
    grid-template-columns: 1fr;
  }

  body.pre-cadastro-page a.profile-choice-card {
    min-height: 185px;
  }
}
