/* ARQUIVO: assets/css/uba-blog.css */

/* 1. Botão Inteligente (Blindado contra temas) */
.uba-smart-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 16px 36px !important;
    background: #0074FF !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 50px !important; 
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 4px 15px rgba(0, 116, 255, 0.3) !important;
    border: none !important;
    cursor: pointer !important;
    line-height: 1 !important;
    position: relative !important;
    overflow: hidden !important; /* Ajuda a conter backgrounds vazados */
    max-width: max-content !important; /* Impede o botão de esticar 100% */
}

/* Resetando pseudoelementos que o Elementor costuma injetar */
.uba-smart-btn::before, .uba-smart-btn::after {
    display: none !important; 
}

.uba-smart-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 116, 255, 0.5) !important;
    background: #0056b3 !important; /* Azul mais escuro no hover */
}

/* Variante Verde (WhatsApp) */
.uba-smart-btn.btn-whatsapp {
    background: #25D366 !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
}

.uba-smart-btn.btn-whatsapp:hover {
    background: #1da851 !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5) !important;
}

.uba-smart-btn i, .uba-smart-btn svg {
    font-size: 1.3em !important;
    margin: 0 !important;
    transition: transform 0.3s ease !important;
}

.uba-smart-btn:hover i {
    transform: scale(1.1) !important;
}