/* WhatsApp Widget - Papimpum Design System */
.wa-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    font-family: 'Fredoka', sans-serif;
}

.wa-widget-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.wa-widget-button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.wa-widget-button svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.wa-widget-tooltip {
    background: white;
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
    pointer-events: none;
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-widget-container:hover .wa-widget-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.wa-widget-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #eb7a92;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(235, 122, 146, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(235, 122, 146, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(235, 122, 146, 0); }
}

@media (max-width: 768px) {
    .wa-widget-container {
        bottom: 95px;
        right: 16px;
    }
    .wa-widget-tooltip {
        display: none; /* Esconder tooltip no mobile para não ocupar tela */
    }
}
