.shine-text {
  font-weight: 600;
  background: linear-gradient(90deg, #00bfff, #8a2be2, #ff3cac);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineFlow 6s ease-in-out infinite;
}

@keyframes shineFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Centraliza verticalmente as curvas laterais */
.vc_row.equal-height .wpb_column {
  display: flex;
  align-items: center;
}

/* Corrige posição das curvas */
.curve-left, .curve-right {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

/* Ajusta altura proporcional */
.curve-left img, .curve-right img {
  height: auto;
  max-height: 80%;
  width: auto;
  object-fit: contain;
}

/* Força o tamanho dos ícones do bloco [Tinos] Advanced Icon */
.icon-size-50 img {
  width: 50px !important;
  height: auto !important;
  max-width: none !important;
  display: inline-block;
}