/**
 * Olsen WhatsApp - Estilos do botão flutuante
 * Versão: 1.0
 * Autor: Anderson Olsen - Olsen Soluções
 */

.olsen-whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 99999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.olsen-whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.olsen-whatsapp-button:active {
    transform: scale(0.95);
}

.olsen-whatsapp-button svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

/* Animação de pulse */
.olsen-whatsapp-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: olsen-pulse 2s infinite;
    z-index: -1;
}

@keyframes olsen-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .olsen-whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .olsen-whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
}

/* Evita conflitos com outros plugins */
.olsen-whatsapp-button * {
    box-sizing: border-box;
}
