/* PREMIUM Sticky Assistant – Asistente Humano */

#sticky-premium {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 999999;
    font-family: 'Inter', sans-serif;
}

/* Closed Bar */
.premium-bar {
    background: #6A4BC3;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

#premium-bar span {
    font-size: 14px;
}

.premium-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-bottom: 0px !important;
}

/* Panel */
.premium-panel {
    background: white;
    width: 100%;
    padding: 22px;
    box-shadow: 0 -4px 18px rgba(0,0,0,0.18);
    display: none;
    animation: slideUp 0.35s ease;
    border-radius: 20px 20px 0 0;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.premium-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-avatar-large {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.premium-close {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #555;
}

.premium-title {
    font-size: 17px;
    font-weight: 700;
    margin: 14px 0 8px;
    color: #333;
}

.premium-text {
    font-size: 15px;
    margin-bottom: 16px;
    color: #666;
}

.premium-input {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 15px;
}

.premium-btn {
    width: 100%;
    background: #6A4BC3;
    color: white;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.premium-btn:hover {
    background: #5b3ab0;
}

.premium-footer {
    text-align: center;
    margin-top: 14px;
    font-size: 12px;
    color: #777;
}

/* Desktop */
@media (min-width: 900px) {
    #sticky-premium {
        width: 340px;
        right: 20px;
        bottom: 20px;
    }
    .premium-panel {
        border-radius: 16px;
    }
}
