/**
 * Frontend Styles: Módulo Concierge (ÉLITE Refinement - Fixed Positioning)
 */

.loq-concierge {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    padding: 0;
    margin: 6px 0;
}

.loq-concierge-inner {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    color: inherit;
    transition: transform 0.2s ease;
}

/* Contenedor Visual: Avatar + Dot superpuesto */
.loq-concierge-visual {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.loq-concierge-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f5f9;
    border: 1.5px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.loq-concierge-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Status Dot: Posicionado sobre el avatar */
.loq-concierge-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: #00a650;
    border-radius: 50%;
    border: 2.5px solid #ffffff; /* Separación visual del avatar */
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,166,80,0.1);
}

.loq-concierge-status-dot::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: inherit;
    animation: loq-glow 2s ease-out infinite;
}

.loq-concierge-status-dot::after {
    content: "";
    position: absolute;
    inset: -3px;
    border: 1px solid #00a650;
    border-radius: 50%;
    opacity: 0;
    animation: loq-ping 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes loq-glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 166, 80, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(0, 166, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 166, 80, 0); }
}

@keyframes loq-ping {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(3); opacity: 0; }
}

/* Typography */
.loq-concierge-body {
    display: flex;
    flex-direction: column;
}

.loq-concierge-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.loq-concierge-msg {
    font-size: 14px;
    color: #1d1d1f;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.loq-concierge-msg strong {
    font-weight: 600;
}

.loq-concierge-authority {
    font-size: 11px;
    font-weight: 400;
    color: #86868b;
    letter-spacing: -0.01em;
}

@media (max-width: 480px) {
    .loq-concierge-msg {
        font-size: 13.5px;
    }
}