/* Moto Hub — estilos extraídos do index.html (para cache eficiente) */

/* Tipografia: moto sans (headlines) + Gotham (body) — Brand VI section 06 */
@font-face { font-family: 'moto sans'; src: url('../fonts/MotoSans-Regular.woff2') format('woff2'), url('../fonts/MotoSans-Regular.woff') format('woff'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'moto sans'; src: url('../fonts/MotoSans-Italic.woff2') format('woff2'), url('../fonts/MotoSans-Italic.woff') format('woff'); font-weight: 400; font-style: italic; font-display: swap; }
/*
  Moto Sans Bold (peso 700): copie MotoSans-Bold.woff2/.woff da pasta Web do pacote para fonts/ e descomente:
@font-face {
    font-family: 'moto sans';
    src: url('../fonts/MotoSans-Bold.woff2') format('woff2'), url('../fonts/MotoSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
  Sem este ficheiro, font-weight: 600/700 usa negrito sintético (menos nítido que o Bold real).
*/
/* Gotham: pacote local costuma trazer WOFF ou TTF (sem WOFF2). Ordem = mais leve primeiro. */
@font-face {
    font-family: 'Gotham Medium';
    src:
        url('../fonts/gotham-medium.woff2') format('woff2'),
        url('../fonts/gotham-medium.woff') format('woff'),
        url('../fonts/GothamMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Motorola Global Brand Identity — Core palette (Nov 2025) */
:root {
    --moto-black: #131417;
    --white: #FFFFFF;
    --frost: #E9EAF2;
    --pearl: #F0EDE9;
    --slate-blue: #636880;
    /* Texto secundário ligeiramente mais escuro (contraste sobre vidro branco). */
    --text-secondary: #545a72;
    --sandstone: #7A7670;
    --moto-indigo: var(--slate-blue); /* alias: destaque = Slate Blue */
    --panel: rgba(255, 255, 255, 0.78);
    --panel-strong: rgba(255, 255, 255, 0.92);
    --stroke: rgba(99, 104, 128, 0.12);
    --stroke-strong: rgba(99, 104, 128, 0.18);
}

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}
body {
    font-family: 'Gotham Medium', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--frost);
    color: var(--moto-black);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    isolation: isolate;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 120% 85% at 50% -25%, rgba(99, 104, 128, 0.16), transparent 58%),
        radial-gradient(ellipse 80% 55% at 100% 5%, rgba(99, 104, 128, 0.09), transparent 52%),
        radial-gradient(ellipse 70% 50% at -5% 85%, rgba(255, 255, 255, 0.45), transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 95%, rgba(99, 104, 128, 0.06), transparent 50%),
        linear-gradient(168deg, #eceef5 0%, var(--frost) 42%, #e2e5ee 100%);
}
button:focus-visible, a:focus-visible, input:focus-visible, [tabindex]:focus-visible {
    outline: 2px solid var(--slate-blue);
    outline-offset: 2px;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Headlines e subheadlines: moto sans (Brand VI — primary typeface); sempre minúsculas */
h1, h2, h3, h4, .moto-headline {
    font-family: 'moto sans', system-ui, sans-serif !important;
    text-transform: lowercase !important;
    letter-spacing: -0.01em;
    line-height: 0.84;
}

/* Body, captions, links, CTAs: Gotham (Brand VI — secondary typeface) */
p, pre, footer {
    font-family: 'Gotham Medium', system-ui, sans-serif !important;
    line-height: 1.15;
}

/* UI em destaque: moto sans (títulos de card, abas, botões); sempre minúsculas */
.moto-sans-text, button, a {
    font-family: 'moto sans', system-ui, sans-serif !important;
    text-transform: lowercase !important;
}

.home-page {
    width: 100%;
    max-width: 1200px;
    min-width: 0;
    margin: 0 auto;
    box-sizing: border-box;
    /* Larguras assimétricas (ex.: Dynamic Island / fold) + margens confortáveis em telemóveis estreitos */
    --hub-pad-l: max(clamp(12px, 3.8vw, 32px), env(safe-area-inset-left, 0px));
    --hub-pad-r: max(clamp(12px, 3.8vw, 32px), env(safe-area-inset-right, 0px));
    /* Mesmo limite do grid de cards (centrado): alinha o logo com a orla esquerda do 1.º card */
    --hub-cards-max: 1040px;
    padding: 0 var(--hub-pad-r) max(8px, env(safe-area-inset-bottom, 0px)) var(--hub-pad-l);
}

/* Hero + logo — escala global do bloco “moto hub” via --hero-scale (1.3 = +30%). */
.home-hero {
    --hero-scale: 1.3;
    /* Subtítulo mais discreto em relação ao título “moto hub” (1 = igual ao factor do hero). */
    --hero-subline-ratio: 0.86;
    margin: 0;
    padding: calc(22px * var(--hero-scale)) 0 calc(12px * var(--hero-scale));
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-glass {
    width: fit-content;
    max-width: min(calc(38rem * var(--hero-scale)), 100%);
    min-width: 0;
    margin: calc(4px * var(--hero-scale)) auto 0;
    padding:
        calc(0.58rem * var(--hero-scale))
        calc(1.1rem * var(--hero-scale))
        calc(0.65rem * var(--hero-scale));
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: calc(0.28rem * var(--hero-scale));
    border-radius: calc(22px * var(--hero-scale));
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.22) 48%, rgba(255, 255, 255, 0.32) 100%);
    backdrop-filter: blur(26px) saturate(1.45);
    -webkit-backdrop-filter: blur(26px) saturate(1.45);
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.92) inset,
        0 2px 1px rgba(255, 255, 255, 0.4) inset,
        0 -1px 0 rgba(99, 104, 128, 0.06) inset,
        0 28px 56px rgba(99, 104, 128, 0.09),
        0 10px 24px rgba(19, 20, 23, 0.05);
}

.logo-container {
    align-self: stretch;
    width: 100%;
    text-align: left;
    margin-bottom: calc(14px * var(--hero-scale));
    box-sizing: border-box;
    padding-left: max(0px, calc((100% - min(var(--hub-cards-max), 100%)) / 2));
}

.logo-container img {
    height: 32px;
    width: auto;
    max-width: min(168px, 46vw);
    margin: 0;
    display: block;
    object-fit: contain;
    object-position: left center;
}

.home-cards-wrap {
    padding: 4px 0 26px;
}

.videos-jump-wrap {
    display: flex;
    justify-content: center;
    margin-top: clamp(16px, 3.5vw, 28px);
    padding-bottom: 2px;
}

.videos-jump-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: 10px 28px;
    box-sizing: border-box;
    border-radius: 999px;
    background: linear-gradient(155deg, rgba(35, 37, 44, 0.92) 0%, rgba(19, 20, 23, 0.95) 50%, rgba(30, 32, 40, 0.92) 100%);
    backdrop-filter: blur(14px) saturate(1.1);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    color: var(--white) !important;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.12) inset,
        0 4px 12px rgba(19, 20, 23, 0.12),
        0 16px 32px rgba(19, 20, 23, 0.2);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.22s ease;
}

.videos-jump-btn:hover {
    transform: translateY(-4px) translateZ(0);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.16) inset,
        0 8px 20px rgba(19, 20, 23, 0.12),
        0 22px 44px rgba(99, 104, 128, 0.22);
}

.videos-jump-btn:active {
    transform: translateY(-1px);
}

.card,
.videos-jump-btn,
.video-fs-btn {
    touch-action: manipulation;
}

.home-videos {
    padding: 28px 0 max(28px, env(safe-area-inset-bottom, 0px));
    margin-top: 2px;
    border-top: 1px solid rgba(99, 104, 128, 0.12);
    scroll-margin-top: max(24px, env(safe-area-inset-top, 0px));
}

#recursos {
    scroll-margin-top: max(12px, env(safe-area-inset-top, 0px));
}

.videos-section-title {
    font-size: clamp(1.35rem, 4vw, 1.85rem);
    font-weight: 600;
    text-align: center;
    margin: 0 auto 18px;
    max-width: min(28rem, 100%);
    box-sizing: border-box;
    width: 100%;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    color: var(--moto-black);
    letter-spacing: -0.02em;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

/* Alinha o bleed horizontal ao padding real da página (incl. safe-area) */
.video-rail-wrap {
    margin-left: calc(-1 * var(--hub-pad-l));
    margin-right: calc(-1 * var(--hub-pad-r));
    padding: 0 var(--hub-pad-r) 8px var(--hub-pad-l);
}

.video-rail {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pinch-zoom;
    scrollbar-width: thin;
    scrollbar-color: rgba(99, 104, 128, 0.35) transparent;
    scroll-padding-left: var(--hub-pad-l);
    scroll-padding-right: var(--hub-pad-r);
}

@supports (mask-image: linear-gradient(#000, transparent)) {
    .video-rail-wrap {
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    }
}

.video-rail::-webkit-scrollbar {
    height: 6px;
}

.video-rail::-webkit-scrollbar-thumb {
    background: rgba(99, 104, 128, 0.35);
    border-radius: 99px;
}

.video-rail-msg {
    font-family: 'moto sans', system-ui, sans-serif !important;
    text-transform: lowercase !important;
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 0;
    padding: 1.1rem 1rem 0.5rem;
    max-width: 28rem;
    line-height: 1.4;
}

.video-rail-msg--empty {
    opacity: 0.92;
}

.video-card {
    flex: 0 0 auto;
    width: 148px;
    height: 263px;
    aspect-ratio: 9 / 16;
    border-radius: 14px;
    overflow: hidden;
    scroll-snap-align: start;
    background: #0a0a0c;
    box-shadow:
        0 4px 12px rgba(19, 20, 23, 0.1),
        0 16px 40px rgba(99, 104, 128, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

@media (min-width: 480px) {
    .video-card { width: 168px; height: 298px; }
}

@media (min-width: 900px) {
    .video-card { width: 180px; height: 320px; }
}

.video-card iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 0;
}

.video-fs-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 3;
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 9px;
    background: rgba(10, 10, 14, 0.62);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s ease, transform 0.15s ease;
}

.video-fs-btn:hover {
    background: rgba(10, 10, 14, 0.82);
}

.video-fs-btn:active {
    transform: scale(0.96);
}

.video-fs-btn:focus-visible {
    outline: 2px solid var(--slate-blue);
    outline-offset: 2px;
}

.hub-notif-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; pointer-events: none; }
.hub-notif-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); pointer-events: auto; }
.hub-notif-card { position: relative; width: 100%; max-width: 520px; background: linear-gradient(165deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.55) 45%, rgba(255, 255, 255, 0.66) 100%); backdrop-filter: blur(24px) saturate(1.2); -webkit-backdrop-filter: blur(24px) saturate(1.2); border: 1px solid rgba(255, 255, 255, 0.74); border-radius: 24px; padding: 32px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255, 255, 255, 0.9) inset; pointer-events: auto; z-index: 10; display: flex; flex-direction: column; }
.hub-notif-kicker { font-size: 0.85rem; font-weight: 700; color: var(--moto-indigo, #0014C7); text-transform: lowercase; margin-bottom: 8px; font-family: 'moto sans', sans-serif; }
.hub-notif-body { flex: 1; }
.hub-notif-text { font-size: 1.05rem; color: var(--moto-black, #131417); margin-bottom: 24px; line-height: 1.5; font-family: 'moto sans', sans-serif; }
.hub-notif-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hub-notif-btn { padding: 14px 28px; border-radius: 99px; font-weight: 700; font-size: 0.95rem; cursor: pointer; text-align: center; transition: all 0.2s; border: 1px solid transparent; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; font-family: 'moto sans', sans-serif; }

@media (max-width: 390px) {
    .hub-notif-card { width: 100%; max-width: 520px; border-radius: 18px; padding: 16px 14px 14px; max-height: 76dvh; }
    .hub-notif-text { font-size: 0.96rem; }
    .hub-notif-subtitle { font-size: 0.86rem; }
}

@media (max-width: 430px) and (max-height: 480px) { .hub-notif-card { max-height: 82dvh; } }

.hub-notif-bell {
    position: fixed;
    top: max(12px, env(safe-area-inset-top, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    z-index: 1200;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    box-shadow: 0 10px 28px rgba(19, 20, 23, 0.14);
    color: rgba(19, 20, 23, 0.92);
    cursor: pointer;
    touch-action: manipulation;
}
.hub-notif-btn-primary {
    background: linear-gradient(155deg, rgba(35, 37, 44, 0.92) 0%, rgba(19, 20, 23, 0.95) 50%, rgba(30, 32, 40, 0.92) 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.12) inset,
        0 10px 24px rgba(19, 20, 23, 0.18);
}
.hub-notif-btn-primary:active { transform: translateY(1px); }
.hub-notif-btn-ghost {
    background: rgba(255, 255, 255, 0.55);
    color: rgba(19, 20, 23, 0.92);
    border-color: rgba(99, 104, 128, 0.18);
}
.hub-notif-btn-subtle { opacity: 0.88; }
.hub-notif-btn-subtle:hover { opacity: 1; }
.hub-notif-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(19, 20, 23, 0.04);
    color: rgba(19, 20, 23, 0.6);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.hub-notif-close:hover {
    background: rgba(19, 20, 23, 0.08);
    color: rgba(19, 20, 23, 0.9);
}
.hub-notif-close:active { transform: scale(0.98); }
@media (max-width: 390px) {
    .hub-notif-card { width: 100%; max-width: 520px; border-radius: 18px; padding: 16px 14px 14px; max-height: 76dvh; }
    .hub-notif-text { font-size: 0.96rem; }
}
.hub-notif-bell:active { transform: none !important; opacity: 0.8; }
.hub-notif-bell:focus-visible {
    outline: 2px solid var(--slate-blue);
    outline-offset: 3px;
}
.hub-notif-bell-ic { font-size: 1.1rem; line-height: 1; }
.hub-notif-bell-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #131417;
    color: #fff;
    font-family: 'moto sans', system-ui, sans-serif !important;
    font-size: 0.72rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

/* display:grid acima quebra o atributo hidden */
.hub-notif-bell-badge[hidden] {
    display: none !important;
}
.hub-notif-list[hidden] {
    display: none !important;
}
.hub-notif-panel {
    position: fixed;
    inset: 0;
    z-index: 10000;
    box-sizing: border-box;
    display: grid;
    place-items: center;
    justify-items: center;
    align-content: center;
    min-width: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding:
        max(14px, env(safe-area-inset-top, 0px))
        max(14px, env(safe-area-inset-right, 0px))
        max(14px, env(safe-area-inset-bottom, 0px))
        max(14px, env(safe-area-inset-left, 0px));
}
.hub-notif-panel-card {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: 100%;
    max-width: 560px;
    min-width: 0;
    max-height: min(78dvh, 680px);
    overflow: hidden;
    border-radius: 22px;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.55) 45%, rgba(255, 255, 255, 0.66) 100%);
    border: 1px solid rgba(255, 255, 255, 0.74);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.92) inset,
        0 16px 42px rgba(19, 20, 23, 0.18),
        0 48px 90px rgba(19, 20, 23, 0.22);
    backdrop-filter: blur(22px) saturate(1.25);
    -webkit-backdrop-filter: blur(22px) saturate(1.25);
    color: var(--moto-black);
    display: flex;
    flex-direction: column;
}
.hub-notif-panel-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 10px;
    border-bottom: 1px solid rgba(99, 104, 128, 0.14);
}
.hub-notif-panel-title {
    font-family: 'moto sans', system-ui, sans-serif !important;
    text-transform: lowercase !important;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 1.15rem;
}
.hub-notif-tabs {
    display: flex;
    gap: 10px;
    padding: 10px 16px 12px;
    border-bottom: 1px solid rgba(99, 104, 128, 0.12);
}
.hub-notif-tab {
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(99, 104, 128, 0.18);
    background: rgba(255, 255, 255, 0.55);
    color: rgba(19, 20, 23, 0.88);
    font-family: 'moto sans', system-ui, sans-serif !important;
    text-transform: lowercase !important;
    font-weight: 700;
    cursor: pointer;
}
.hub-notif-tab.is-active {
    background: rgba(19, 20, 23, 0.92);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}
.hub-notif-panel-bd { padding: 12px 16px 16px; overflow: auto; }
.hub-notif-list { display: grid; gap: 10px; }
.hub-notif-item {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(99, 104, 128, 0.16);
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}
.hub-notif-item-msg { font-size: 0.95rem; line-height: 1.25; color: rgba(19, 20, 23, 0.92); overflow-wrap: anywhere; }
.hub-notif-item-sub { margin-top: 4px; font-size: 0.78rem; color: rgba(99, 104, 128, 0.92); letter-spacing: 0.02em; }
.hub-notif-item-cta { flex-shrink: 0; font-family: 'moto sans', system-ui, sans-serif !important; text-transform: lowercase !important; font-weight: 700; color: rgba(99, 104, 128, 0.95); }
.hub-notif-empty { padding: 18px 8px; color: rgba(99, 104, 128, 0.95); font-family: 'moto sans', system-ui, sans-serif !important; text-transform: lowercase !important; }
@media (max-width: 390px) {
    .hub-notif-bell { width: 44px; height: 44px; border-radius: 13px; }
    .hub-notif-panel-card { border-radius: 18px; width: 100%; max-width: 560px; max-height: 82dvh; }
    .hub-notif-item-msg { font-size: 0.9rem; }
}


/* Forca moto sans sempre em minusculo globalmente */
.moto-sans-text, [style*="moto sans"] { text-transform: lowercase !important; }

*[style*='moto sans'] { text-transform: lowercase !important; }

/* force-lowercase-moto-sans */
*[style*='moto sans'], .moto-sans-text, .moto-headline, [class*='moto-sans'] { text-transform: lowercase !important; }

/* Font fix for notif popup */
.hub-notif-card .hub-notif-kicker, .hub-notif-card .hub-notif-text, .hub-notif-card .hub-notif-btn { font-family: 'moto sans', system-ui, sans-serif !important; text-transform: lowercase !important; }


.hub-notif-bell:focus, .hub-notif-bell:focus-visible { outline: none !important; box-shadow: 0 10px 28px rgba(19, 20, 23, 0.14) !important; }
.hub-notif-bell { outline: none !important; border-color: transparent !important; }.hub-notif-bell * { outline: none !important; }
.hub-notif-bell { -webkit-tap-highlight-color: transparent !important; }* { -webkit-tap-highlight-color: transparent !important; }


@media (min-width: 768px) { .hub-notif-bell { right: 32px; } }
@media (min-width: 1200px) { .hub-notif-bell { right: calc(50vw - 576px + 24px); } }
