/* === PROBLEM === */
.problema {
  background: var(--bege-claro);
}

.problema-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.problema-card {
  background: var(--branco);
  padding: 40px 32px;
  border-radius: 4px;
  border-top: 3px solid var(--azul);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problema-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.15);
}

.problema-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  color: var(--azul-claro);
  line-height: 1;
  margin-bottom: 16px;
}

.problema-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--grafite);
}

.problema-cta {
  text-align: center;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--grafite);
  font-style: italic;
}

.problema-cta strong {
  font-style: normal;
  font-weight: 600;
  color: var(--azul-escuro);
}