.whatsapp-float,
.ticket-float {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #0052cc;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float {
    bottom: 140px;
    background: #25D366;
}

.ticket-float {
    bottom: 200px;
}

.whatsapp-float::before,
.ticket-float::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 100%;
    margin-right: 10px;
    white-space: nowrap;
    background: #0052cc;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.whatsapp-float:hover::before,
.ticket-float:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #25D366;
}

.ticket-float:hover {
    transform: scale(1.1);
    background: #0747A6;
}

.whatsapp-float:hover,
.ticket-float:hover {
    color: white;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

