/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 13 2025 | 12:47:55 */
/* Botões dourados pulsantes ultra-intensos */
button, 
input[type="button"], 
input[type="submit"], 
a.button {
    background-color: #FFD700 !important; /* Ouro */
    color: #000 !important; /* Texto preto */
    border: 2px solid #FFC300 !important;
    border-radius: 8px !important;
    padding: 12px 25px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    animation: pulse-gold-strong 1s infinite alternate !important; /* mais rápido e alternando */
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

/* Hover ainda mais destacado */
button:hover, 
input[type="button"]:hover, 
input[type="submit"]:hover, 
a.button:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 0 30px #FFD700, 0 0 60px #FFC300, 0 0 90px #FFD700 !important;
}

/* Animação pulsante mais forte */
@keyframes pulse-gold-strong {
    0% { box-shadow: 0 0 10px #FFD700, 0 0 20px #FFC300; }
    50% { box-shadow: 0 0 25px #FFD700, 0 0 50px #FFC300; }
    100% { box-shadow: 0 0 40px #FFD700, 0 0 80px #FFC300; }
}
