.section-dores {
  background-color: black;
  padding-top: 100px;
  padding-bottom: 150px;
  padding-left: 5px;
  padding-right: 5px
}

.pain-point-box {
  background-color: rgba(255, 255, 255, 0.05); /* Fundo translúcido escuro */
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 1rem;                         /* Bordas arredondadas */
  backdrop-filter: blur(4px);                  /* Efeito vidro fosco */
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);   /* Sombra leve */
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.pain-point-box:hover {
  transform: translateY(-6px);                             /* Elevação sutil */
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);             /* Sombra mais forte */
  border-color: rgba(255, 255, 255, 0.35);                 /* Realce da borda */
}

.botao-ver-planos {
  background-color: transparent;
  border: 2px solid #bf01c9;
  color: #bf01c9;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.botao-ver-planos:hover {
  background-color: #bf01c9;
  color: white;
}
