.rounded-button {
  background: linear-gradient(0deg, #0074f9, #2da4ff); /* Gradiente */
  color: white;
  border: none;
  border-radius: 50px; /* Botón redondeado */
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease; /* Transición suave para hover */
  font-family: 'Franklin Gothic', 'Arial Narrow', Arial, sans-serif;
  animation: pulseAnimation 2.5s ease-in-out infinite; /* Animación de pulso infinita */
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.5);
}

@keyframes pulseAnimation {
  0% {
    transform: scale(1); /* Tamaño normal */
    opacity: 1; /* Opacidad normal */
  }
  50% {
    transform: scale(1.05); /* Leve expansión */
    opacity: 0.9; /* Opacidad reducida */
  }
  100% {
    transform: scale(1); /* Vuelve al tamaño normal */
    opacity: 1; /* Vuelve a la opacidad normal */
  }
}


.centered-divi {
  display: flex;
  justify-content: center; 
  background: linear-gradient(0deg,  #0061fe, #00abfa); /* Gradiente */
  padding: 0.5rem;
}

.rounded-buttonm {
  background: linear-gradient(90deg, #bb00f9, #e374ff); /* Gradiente */
  color: white;
  border: none;
  border-radius: 50px; /* Botón redondeado */
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease; /* Transición suave para hover */
  font-family: 'Franklin Gothic', 'Arial Narrow', Arial, sans-serif;
  animation: pulseAnimation 2.5s ease-in-out infinite; /* Animación de pulso infinita */
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.5);
}
.centered-divim {
  display: flex;
  justify-content: center; 
  background: linear-gradient(90deg,  #5004c3, #9234f0); /* Gradiente */
  padding: 0.5rem;
}