.demanda-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2.2rem 2.2rem 2.2rem 2.2rem;
}

.demanda-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
}

.demanda-title-row .demanda-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #232323;
}

.demanda-title-row .details-link {
  font-size: 1rem;
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
}

.demanda-impact-graph {
  width: 100%;
  max-width: 700px;
  height: 260px;
  margin: 0 auto 1.2rem auto;
  background: none;
  display: block;
  border-radius: 22px;
  box-shadow: 0 2px 12px #e0e0e022;
  background: #f7f9fc;
  padding: 1.2rem 0.5rem 0.5rem 0.5rem;
}

.demanda-indicadores-row {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.2rem;
  justify-content: center;
}

.demanda-indicador {
  background: #f7f8fa;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  color: #232323;
  min-width: 130px;
  text-align: center;
  box-shadow: 0 1px 4px #e0e0e033;
  border: 1px solid #e0e0e0;
  font-weight: 600;
}

.demanda-indicador-label {
  font-size: 0.95rem;
  color: #888;
  font-weight: 400;
  margin-bottom: 0.2rem;
  display: block;
}

.ai-help-icon {
  width: 32px;
  height: 32px;
  margin-left: 0.7rem;
  cursor: pointer;
  vertical-align: middle;
  transition: transform 0.15s;
  opacity: 0.85;
}

.ai-help-icon:hover {
  transform: scale(1.18) rotate(-8deg);
  opacity: 1;
}

.ai-tutor-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40, 40, 60, 0.55);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: tutorOverlayIn 0.25s;
}

@keyframes tutorOverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.ai-tutor-modal {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 8px 48px #5A6A7A33;
  border-radius: 22px;
  padding: 2.2rem 2.5rem 2.2rem 2.2rem;
  min-width: 320px;
  max-width: 480px;
  width: 90vw;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 1.13rem;
  color: #232323;
  position: relative;
  animation: tutorIn 0.3s;
} 