.industry-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.industry-card h3 {
  margin: 12px 0 8px;
  font-size: 1.1rem;
}

.industry-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

.case-ilustrativo {
  border: 1px dashed var(--border);
  background: var(--bg-light);
}

.case-ilustrativo h3 {
  margin: 14px 0 8px;
}

.case-resultado {
  margin-top: 12px !important;
  color: var(--accent-green) !important;
  font-size: 0.9rem !important;
}

.disclaimer {
  margin-top: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--bg-light);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  color: var(--text-color);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent-blue);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}
