/* PÁGINA RESULTADOS */

.pagina-resultados {
  min-height: calc(100vh - 64px);
  background: #f8f7ff;
  padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 80px);
}

.resultados-inner {
  max-width: 900px;
  margin: 0 auto;
}

.resultados-hero {
  text-align: center;
  margin-bottom: 56px;
}

.resultados-hero h1 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  color: #0f0e17;
}

.resultados-hero p {
  color: #6b7280;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Cards de categoria */
.categoria-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.categoria-titulo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0f0e17;
}

.categoria-lista {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.8;
  padding-left: 20px;
}

.categoria-lista li {
  margin-bottom: 6px;
}

/* Cards de passos */
.passo-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  text-align: center;
}

.passo-numero {
  width: 48px;
  height: 48px;
  background: #5b4fe8;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}

.passo-titulo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #0f0e17;
}

.passo-desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Cards de artigos do CDC */
.artigos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.artigo-card {
  background: white;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #5b4fe8;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.artigo-numero {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: #5b4fe8;
  font-size: 0.85rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.artigo-texto {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

/* Card de aviso para advogado */
.aviso-advogado {
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
  text-align: center;
}

.aviso-advogado h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.aviso-advogado p {
  margin: 0;
}

.aviso-advogado ul {
  text-align: left;
  max-width: 400px;
  margin: 0 auto 20px;
  color: #78350f;
  font-size: 0.9rem;
  line-height: 1.8;
  padding-left: 20px;
}

.aviso-advogado ul li {
  margin-bottom: 8px;
}

.aviso-advogado a {
  color: #5b4fe8;
  font-weight: 600;
  text-decoration: none;
}

.aviso-advogado a:hover {
  text-decoration: underline;
}

/* Disclaimer */
.resultados-disclaimer {
  background: #fefce8;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.82rem;
  color: #92400e;
  line-height: 1.7;
  margin-top: 48px;
}

@media (max-width: 640px) {
  .artigos-grid {
    grid-template-columns: 1fr;
  }
}
