/* Marca Arkadium88 TaxiDriver — icono oficial en todas las pantallas */
.ark-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}
.ark-brand:focus-visible {
    outline: 2px solid rgba(0, 210, 255, 0.6);
    outline-offset: 4px;
    border-radius: 12px;
}
.ark-brand-icon-wrap {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    padding: 2px;
    background: linear-gradient(145deg, rgba(255, 220, 120, 0.35), rgba(255, 255, 255, 0.12));
    box-shadow: 0 0 18px rgba(240, 165, 0, 0.28), 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 200, 80, 0.4);
}
.ark-brand-icon {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 9px;
    object-fit: cover;
    object-position: center;
}
.ark-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}
.ark-brand-name {
    font-family: 'Outfit', 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.3px;
    color: #fff;
}
.ark-brand-tag {
    font-size: 0.58rem;
    font-weight: 500;
    color: #00d2ff;
    margin-top: 2px;
}
.ark-brand--center {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 12px;
}
.ark-brand--center .ark-brand-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    padding: 3px;
}
.ark-brand--center .ark-brand-icon {
    border-radius: 13px;
}
.ark-brand--center .ark-brand-name {
    font-size: 1.15rem;
}

/* White-label org: colores vía JS (--ark-primary / --ark-secondary). Footer maestro inmutable. */
body.ark-whitelabel .ark-brand-tag {
    color: var(--ark-secondary, var(--cyan, #00d2ff));
}
body.ark-whitelabel .ark-brand-icon-wrap {
    border-color: color-mix(in srgb, var(--ark-primary, #e8b923) 55%, transparent);
    box-shadow: 0 0 18px color-mix(in srgb, var(--ark-primary, #e8b923) 35%, transparent);
}

.ark-footer-master {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25;
    pointer-events: none;
    /* No hereda variables de tenant para el texto corporativo */
    --ark-primary: initial;
    --ark-secondary: initial;
}
.ark-footer-master-label {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 700;
    color: #cbd5e1 !important;
}
.ark-footer-master::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e8b923;
    box-shadow: 0 0 8px rgba(232, 185, 35, 0.6);
}
