/**
 * WhatsApp Button Component - DirectaLog
 * Botão flutuante do WhatsApp
 * Extraído de: style.css (linhas 6460-6513)
 */

.whats {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 9999 !important;
    display: block !important;
    width: 60px !important;
    height: 60px !important;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.whats:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.whats a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

.whats a:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whats img {
    width: 60px;
    height: 60px;
    display: block;
    border-radius: 50%;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

/* Responsivo - ajustar posição em telas menores */
@media (max-width: 768px) {
    .whats {
        bottom: 20px !important;
        right: 20px !important;
        width: 55px !important;
        height: 55px !important;
    }
    
    .whats img {
        width: 55px;
        height: 55px;
    }
}
