.elementor-21747 .elementor-element.elementor-element-8a13462 .elementor-button{background-color:#62A73B00;font-family:"Outfit", Sans-serif;font-size:18px;font-weight:600;fill:#FFFFFF;color:#FFFFFF;border-radius:20px 20px 20px 20px;}.elementor-21747 .elementor-element.elementor-element-8a13462 .elementor-button-content-wrapper{flex-direction:row-reverse;}/* Start custom CSS for button, class: .elementor-element-8a13462 */.ctae {
  /* Gradiente con Dorado y Azul Oscuro */
  background: linear-gradient(-45deg, #0B1315, #D4AF37, #0B1315, #D4AF37);
  background-size: 400% 400%;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 18px;
  padding: 8px 28px; /* Ajustado para que el botón tenga mejor forma */
  border-radius: 50px;
  border: none;
  
  /* Sombra base usando el azul oscuro para profundidad */
  box-shadow: 0 6px 20px rgba(11, 19, 21, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.1) inset;
  
  cursor: pointer;
  text-align: center;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  animation: gradientShift 8s ease infinite;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.ctae:hover {
  transform: translateY(-5px) scale(1.05);
  /* Sombra dorada brillante en hover */
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5), 0 0 0 4px rgba(255, 255, 255, 0.2) inset;
  animation: gradientShift 3s ease infinite;
}

.ctae:active {
  transform: translateY(2px);
  /* Sombra más compacta al presionar */
  box-shadow: 0 4px 15px rgba(11, 19, 21, 0.7);
}

.ctae::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

/* Las animaciones @keyframes se mantienen igual */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}/* End custom CSS */