  /* ==========================================================================
   4. SEÇÃO 2: DORES / PROBLEMAS
   ========================================================================== */
  .problem-section {
      background-color: #f8fafc;
      /* Cinza azulado bem claro */
      padding: 100px 0;
  }

  .section-title {
      font-weight: 800;
      font-size: 2.2rem;
      color: #0d1b2a;
      line-height: 1.2;
  }

  .section-subtitle {
      color: #6c757d;
      max-width: 700px;
      font-size: 1.1rem;
  }

  .problem-card {
      background: #ffffff;
      border: 1px solid #f0f0f0;
      border-radius: 16px;
      padding: 30px;
      height: 100%;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  }

  .problem-card:hover {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transform: translateY(-12px) scale(1.02);
  }

  .icon-wrapper {
      color: #f43f5e;
      /* Vermelho/coral do ícone */
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 5px;
  }

  .problem-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: #0f172a;
  }

  .problem-card p {
      font-size: 0.95rem;
      color: #6c757d;
      margin-bottom: 0;
      line-height: 1.5;
  }

  @media (max-width: 768px) {
      .section-title {
          font-size: 1.8rem;
      }
  }