/* Estilos para tela de resultados */

.results-screen {
  min-height: 100vh;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.results-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.results-card h2 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
}

.results-summary {
  margin-bottom: 2rem;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.result-item:last-child {
  border-bottom: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.result-label {
  color: var(--text-color);
}

.result-value {
  font-weight: 600;
  color: var(--primary-color);
}

.results-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.new-simulado-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  background: var(--primary-color);
  color: white;
}

.new-simulado-btn:hover {
  background: var(--primary-hover);
}

/* Responsividade */
@media (max-width: 768px) {
  .results-actions {
    flex-direction: column;
  }
}
