/* Landing estudantes — estilos extras */

body.estudantes-page .estudantes-kicker {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--border));
  color: var(--text-accent);
}

body.estudantes-page .estudantes-compare {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0;
}

body.estudantes-page .estudantes-compare-card {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-surface-raised);
}

body.estudantes-page .estudantes-compare-card h3 {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  color: var(--text-heading);
}

body.estudantes-page .estudantes-compare-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

body.estudantes-page .estudantes-compare-card--medhub {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 8%, var(--bg-surface)), var(--bg-surface-raised));
}

body.estudantes-page .estudantes-steps {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

body.estudantes-page .estudantes-steps li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

body.estudantes-page .estudantes-steps strong {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
}

body.estudantes-page .estudantes-faq {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.92rem;
}

body.estudantes-page .estudantes-faq li + li {
  margin-top: 0.75rem;
}

@media (max-width: 860px) {
  body.estudantes-page .estudantes-compare {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 700px) {
  body.estudantes-page .estudantes-compare {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
