.grafico-path {
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation:
    desenharLinha 2.4s ease forwards,
    flutuarLinha 5s ease-in-out 2.4s infinite;
}

.grafico-area {
  opacity: 0;
  animation:
    aparecerArea 1.2s ease forwards 1.2s,
    flutuarArea 5s ease-in-out 2.4s infinite;
}

.grafico-ponto {
  opacity: 0;
  transform-origin: center;
  animation:
    aparecerPonto 0.5s ease forwards 2.2s,
    pulsarPonto 2.4s ease-in-out 2.6s infinite;
}

@keyframes desenharLinha {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes aparecerArea {
  to {
    opacity: 1;
  }
}

@keyframes aparecerPonto {
  to {
    opacity: 1;
  }
}

@keyframes flutuarLinha {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes flutuarArea {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-3px);
    opacity: 0.85;
  }
}

@keyframes pulsarPonto {
  0%, 100% {
    r: 5;
    opacity: 1;
  }
  50% {
    r: 7;
    opacity: 0.75;
  }
}


.linha-pilares {
  width: 0;
  animation: crescerLinhaPilares 2.8s ease forwards;
}

.grupo-pilar {
  opacity: 0;
  transform: translateY(18px);
  animation: aparecerPilar 0.8s ease forwards;
}

.grupo-pilar:nth-child(1) {
  animation-delay: 0.2s;
}

.grupo-pilar:nth-child(2) {
  animation-delay: 0.6s;
}

.grupo-pilar:nth-child(3) {
  animation-delay: 1s;
}

.grupo-pilar:nth-child(4) {
  animation-delay: 1.4s;
}

@keyframes crescerLinhaPilares {
  to {
    width: 100%;
  }
}

@keyframes aparecerPilar {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#diferenciais .group {
  transform: translateY(0);
}

#diferenciais .group:hover {
  transform: translateY(-4px);
}