/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 28 2025 | 21:26:44 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

.img-piscando {
  animation: piscar 1s infinite;
}

@keyframes piscar {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}
/*Botoes Degrade*/

.cta-button-dg.primary {
    color: white;
    box-shadow: rgba(0, 122, 255, 0.3) 0px 10px 30px;
    background: linear-gradient(135deg, rgb(0, 122, 255), rgb(88, 86, 214));
}
.cta-button-dg.secondary {
    color: white;
    box-shadow: rgba(255, 59, 48, 0.3) 0px 10px 30px;
    background: linear-gradient(135deg, rgb(255, 59, 48), rgb(255, 149, 0));
}
/*titulos Degrade*/
.degrade_purple {
  background: linear-gradient(to right, #8a37ea, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

}
/*borda  Degrade*/
.borda-degrade {
  padding: 4px; /* Espaço para mostrar a borda */
  background: linear-gradient(90deg,  #8a37ea, #ffcc00)!important; /* Degradê da borda */
  border-radius: 12px;
  display: inline-block;
}