/* style.css */
/* Este arquivo concentra estilos personalizados e animações para manter o HTML mais limpo */

/* Fontes */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Paleta de Cores Premium */
.bg-premium-dark {
    background-color: #0B0F19;
}

/* Botões Customizados */
.btn-primary {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(37, 99, 235, 0.7);
}

/* Botão Flutuante do WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background-color: #1EBE57;
    transform: scale(1.1);
    animation: none; /* Para a animação ao passar o mouse */
}

/* Animação para chamar atenção para o botão */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
