.wa-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
}

/* BOTÓN */
.whatsapp-btn {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: #353535;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
}

/* TEXTO */
.wa-text {
    position: relative;
    background: white;
    color: #151515;
    font-family: sans-serif;
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    white-space: nowrap;

    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.3s ease;

    pointer-events: none;
    user-select: none;
}

/* visible */
.wa-text.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}