/* ============================================================================
   ADUAPORTIX SHARE - Share Bar & Social Actions (WhatsApp, PDF, QR)
   Parte de la Fase 7 de Refactorización.
   ============================================================================ */

.adx-share-bar {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.adx-share-label {
    font-size: 0.65rem;
    color: #475569;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    text-align: center;
}

/* Botones principales (WhatsApp) */
.adx-share-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    padding: 13px 16px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.88rem;
    font-family: inherit;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 10px;
}

/* WhatsApp Amigo — Verde vibrante */
.adx-share-wa-friend {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.adx-share-wa-friend:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

.adx-share-wa-friend:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* WhatsApp Agencia — Indigo glass */
.adx-share-wa-agency {
    background: rgba(99, 102, 241, 0.08);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.18);
    font-size: 0.82rem;
}

.adx-share-wa-agency:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.35);
    color: #c7d2fe;
    transform: translateY(-1px);
}

.adx-share-wa-agency:active {
    transform: translateY(0);
}

/* Fila de acciones secundarias */
.adx-share-actions {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.adx-share-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.03);
    color: #64748b;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 6px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.68rem;
    font-family: inherit;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
}

.adx-share-action:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    transform: translateY(-1px);
}

.adx-share-action:active {
    transform: translateY(0);
}

.adx-share-action svg {
    opacity: 0.7;
    transition: opacity 0.2s;
}

.adx-share-action:hover svg {
    opacity: 1;
}