/* ==========================================================
   Hub App — CSS principal
   Mobile-first. Temas escuro/claro via data-theme no <html>.
   Cor primária vinda do admin via --hubapp-primary.
   ========================================================== */

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

/* ─── Tema ESCURO (default) ─── */
:root, [data-theme="escuro"] {
    --bg-app:        #111827;
    --bg-surface:   #1a2234;
    --bg-surface-2: #232b3d;
    --bg-card:      #1a2234;
    --bg-topbar:    var(--hubapp-primary, #f97316);
    --bg-bottombar: #1a2234;
    --bg-overlay:   rgba(0,0,0,0.85);

    --text-primary:   #ffffff;
    --text-secondary: #9aa3b2;
    --text-muted:     #6b7280;
    --text-on-primary: #ffffff;

    --border:        rgba(255,255,255,0.08);
    --border-strong: rgba(255,255,255,0.15);

    --primary:       var(--hubapp-primary, #f97316);
    --primary-hover: var(--hubapp-primary, #f97316);

    --shadow: 0 6px 20px rgba(0,0,0,0.4);
    --shadow-soft: 0 2px 8px rgba(0,0,0,0.3);

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;

    --header-h: 58px;
    --bottomnav-h: 62px;

    color-scheme: dark;
}

/* ─── Tema CLARO ─── */
[data-theme="claro"] {
    --bg-app:       #f3f5f9;
    --bg-surface:   #ffffff;
    --bg-surface-2: #f7f9fc;
    --bg-card:      #ffffff;
    --bg-topbar:    var(--hubapp-primary, #f97316);
    --bg-bottombar: #ffffff;
    --bg-overlay:   rgba(0,0,0,0.55);

    --text-primary:   #0f172a;
    --text-secondary: #4b5563;
    --text-muted:     #8892a6;
    --text-on-primary: #ffffff;

    --border:        rgba(15,23,42,0.08);
    --border-strong: rgba(15,23,42,0.15);

    --shadow: 0 6px 20px rgba(15,23,42,0.12);
    --shadow-soft: 0 2px 8px rgba(15,23,42,0.08);

    color-scheme: light;
}

body.hubapp-body {
    margin: 0;
    padding: 0;
    background: var(--bg-app);
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ─── Layout base ─── */
#hubapp-root {
    min-height: 100vh;
    padding-top: var(--header-h);
    padding-bottom: calc(var(--bottomnav-h) + env(safe-area-inset-bottom, 0));
}

/* ─── Loading ─── */
.hubapp-loading {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-app);
    z-index: 100;
}
.hubapp-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border-strong);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Header (topo laranja) ─── */
.hubapp-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    background: var(--bg-topbar);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    padding-top: env(safe-area-inset-top, 0);
    height: calc(var(--header-h) + env(safe-area-inset-top, 0));
    z-index: 50;
    box-shadow: var(--shadow-soft);
}
.hubapp-header-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}
.hubapp-header-title {
    color: white;
    font-weight: 700;
    font-size: 16px;
    flex: 1;
    text-align: center;
    margin: 0 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.hubapp-header-actions {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}
.hubapp-iconbtn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.15s;
}
.hubapp-iconbtn:hover { background: rgba(0,0,0,0.15); }
.hubapp-iconbtn svg { width: 22px; height: 22px; }

/* ─── Bottom nav ─── */
.hubapp-bottomnav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: var(--bottomnav-h);
    background: var(--bg-bottombar);
    border-top: 1px solid var(--border);
    display: flex;
    padding-bottom: env(safe-area-inset-bottom, 0);
    height: calc(var(--bottomnav-h) + env(safe-area-inset-bottom, 0));
    z-index: 40;
}
.hubapp-bottomnav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 500;
    transition: color 0.15s;
    padding-top: 6px;
}
.hubapp-bottomnav a svg { width: 22px; height: 22px; }
.hubapp-bottomnav a.active { color: var(--primary); }
.hubapp-bottomnav a:hover { color: var(--text-primary); }

/* ─── Banner carrossel ─── */
.hubapp-banners {
    position: relative;
    overflow: hidden;
    margin: 0 0 0 0;
    border-radius: var(--radius);
    background: var(--bg-surface);
    aspect-ratio: 16 / 9;
}
.hubapp-banners-track {
    display: flex;
    transition: transform 0.4s ease;
    width: 100%;
    height: 100%;
}
.hubapp-banner-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    background: var(--bg-surface-2);
    background-size: cover;
    background-position: center;
    cursor: pointer;
}
.hubapp-banners-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}
.hubapp-banners-dots span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: background 0.2s, width 0.2s;
}
.hubapp-banners-dots span.active { background: white; width: 18px; border-radius: 3px; }

/* Setas de navegação do banner */
.hubapp-banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.2s, background 0.15s;
    padding: 0;
}
.hubapp-banner-arrow svg { width: 22px; height: 22px; }
.hubapp-banners:hover .hubapp-banner-arrow { opacity: 1; }
.hubapp-banner-arrow:hover { background: rgba(0,0,0,0.7); }
.hubapp-banner-prev { left: 12px; }
.hubapp-banner-next { right: 12px; }
/* Em mobile/touch, setas sempre visíveis (não tem hover) */
@media (hover: none) {
    .hubapp-banner-arrow { opacity: 0.85; }
    .hubapp-banner-arrow { width: 36px; height: 36px; }
    .hubapp-banner-arrow svg { width: 18px; height: 18px; }
    .hubapp-banner-prev { left: 8px; }
    .hubapp-banner-next { right: 8px; }
}

/* ─── Container e grids ─── */
.hubapp-container {
    padding: 16px;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 1280px) {
    .hubapp-container { max-width: 1200px; padding: 20px 24px; }
}
.hubapp-section-title {
    font-size: 14px;
    font-weight: 600;
    margin: 20px 2px 10px;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.hubapp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
@media (min-width: 640px) {
    .hubapp-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (min-width: 1280px) {
    .hubapp-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

.hubapp-produto-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
@media (min-width: 1280px) {
    .hubapp-produto-list { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ─── Card de produto (capa 1:1 quadrada) ─── */
.hubapp-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform 0.15s, box-shadow 0.15s;
    display: block;
}
.hubapp-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.hubapp-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--bg-surface-2);
    display: block;
}
.hubapp-card-body {
    padding: 10px 12px 12px;
}
.hubapp-card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}
.hubapp-card-sub {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 3px;
}
.hubapp-card-locked {
    opacity: 1;
}
/* Overlay "bloqueado": cadeado + texto centralizados. Clean e elegante:
   escurecido leve + blur sutil (sem dessaturar → evita o tom amarelado/lavado). */
.hubapp-card-lock-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    text-align: center;
    background: rgba(8, 10, 16, 0.38);
    backdrop-filter: blur(0.3px);
    -webkit-backdrop-filter: blur(0.3px);
    pointer-events: none;
}
.hubapp-card-lock-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.hubapp-card-lock-icon svg { width: 18px; height: 18px; }
.hubapp-card-lock-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
}
/* Mobile: cadeado e texto menores */
@media (max-width: 480px) {
    .hubapp-card-lock-icon { width: 30px; height: 30px; }
    .hubapp-card-lock-icon svg { width: 13px; height: 13px; }
    .hubapp-card-lock-text { font-size: 7px; letter-spacing: 0.5px; }
}

/* ─── Card de módulo (capa 1:1 quadrada) ─── */
.hubapp-modulo-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform 0.15s, box-shadow 0.15s;
    display: flex;
    flex-direction: column;
}
.hubapp-modulo-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.hubapp-modulo-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--bg-surface-2);
    display: block;
}
.hubapp-modulo-card-title {
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
    line-height: 1.3;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Badge de tipo (visível só se não for HTML) */
.hubapp-modulo-card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 3px 8px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(4px);
    z-index: 2;
}
.hubapp-modulo-card-badge svg { width: 12px; height: 12px; }
.hubapp-modulo-card-wrap {
    position: relative;
}

/* Módulo bloqueado por drip content */
.hubapp-modulo-locked {
    position: relative;
    cursor: not-allowed;
    opacity: 0.85;
    filter: grayscale(40%);
}
.hubapp-modulo-locked .hubapp-modulo-card-img { filter: brightness(0.65); }
.hubapp-modulo-lock-overlay {
    position: absolute;
    top: 0; left: 0; right: 0;
    aspect-ratio: 1 / 1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.55));
    pointer-events: none;
    z-index: 1;
}
.hubapp-modulo-lock-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.78);
    color: white;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(6px);
    z-index: 2;
    text-align: center;
    line-height: 1.3;
    max-width: calc(100% - 24px);
}
.hubapp-modulo-lock-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ─── Voltar ─── */
.hubapp-back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--text-secondary);
    font-size: 13px;
    margin: 8px 0 14px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 8px 6px 0;
}
.hubapp-back:hover { color: var(--text-primary); }
.hubapp-back svg { width: 16px; height: 16px; }

/* ─── Suporte flutuante ─── */
.hubapp-support-fab {
    position: fixed;
    right: 14px;
    bottom: calc(var(--bottomnav-h) + 14px + env(safe-area-inset-bottom, 0));
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text-on-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    z-index: 30;
    cursor: pointer;
    border: none;
    transition: transform 0.15s;
}
.hubapp-support-fab:hover { transform: scale(1.08); }
.hubapp-support-fab svg { width: 26px; height: 26px; }

/* ─── Modal (tela cheia) de módulo ─── */
.hubapp-modal {
    position: fixed;
    inset: 0;
    background: var(--bg-app);
    z-index: 200;
    display: flex;
    flex-direction: column;
}
.hubapp-modal-header {
    height: var(--header-h);
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 14px;
    padding-top: env(safe-area-inset-top, 0);
    height: calc(var(--header-h) + env(safe-area-inset-top, 0));
    flex-shrink: 0;
    gap: 10px;
}
.hubapp-modal-header .hubapp-iconbtn { color: var(--text-primary); }
.hubapp-modal-header .hubapp-iconbtn:hover { background: var(--bg-surface-2); }
.hubapp-modal-title {
    flex: 1;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}
.hubapp-modal-body {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.hubapp-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    background: white;
}

/* ─── Login form ─── */
.hubapp-login-wrap {
    max-width: 420px;
    margin: 24px auto;
    padding: 24px 20px;
    background: var(--bg-surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}
.hubapp-login-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--text-primary);
}
.hubapp-login-sub {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0 0 18px;
}
.hubapp-form-group {
    margin-bottom: 14px;
}
.hubapp-form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-secondary);
}
.hubapp-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: var(--bg-surface-2);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.15s;
}
.hubapp-input:focus {
    outline: none;
    border-color: var(--primary);
}
.hubapp-input-code {
    font-size: 22px;
    letter-spacing: 8px;
    text-align: center;
    font-weight: 600;
}
.hubapp-btn {
    width: 100%;
    padding: 13px;
    background: var(--primary);
    color: var(--text-on-primary);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.15s;
}
.hubapp-btn:disabled { opacity: 0.6; cursor: wait; }
.hubapp-btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 4px;
}
.hubapp-msg {
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    margin-bottom: 14px;
}
.hubapp-msg-error {
    background: rgba(239,68,68,0.12);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.3);
}
.hubapp-msg-success {
    background: rgba(34,197,94,0.12);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,0.3);
}
.hubapp-msg-info {
    background: rgba(59,130,246,0.12);
    color: #3b82f6;
    border: 1px solid rgba(59,130,246,0.3);
}

/* ─── Perfil ─── */
.hubapp-perfil-card {
    background: var(--bg-surface);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 14px;
}
.hubapp-perfil-email {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}
.hubapp-perfil-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}
.hubapp-perfil-planos {
    margin-top: 6px;
}
.hubapp-perfil-plano-item {
    background: var(--bg-surface-2);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    margin-top: 6px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hubapp-perfil-plano-nome { font-weight: 500; color: var(--text-primary); }
.hubapp-perfil-plano-expira { color: var(--text-muted); font-size: 12px; }

.hubapp-perfil-btn-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}
.hubapp-perfil-btn {
    padding: 12px 14px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: inherit;
    transition: background 0.15s;
}
.hubapp-perfil-btn:hover { background: var(--bg-surface-2); }
.hubapp-perfil-btn.danger { color: #ef4444; }

/* ─── Comunidade (link externo) ─── */
.hubapp-comunidade-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    max-width: 720px;
    margin: 0 auto;
}
.hubapp-comunidade-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-surface-2);
}
.hubapp-comunidade-body {
    padding: 24px 22px 28px;
    text-align: center;
}
.hubapp-comunidade-desc {
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
}
.hubapp-comunidade-desc p { margin: 0 0 12px; }
.hubapp-comunidade-desc p:last-child { margin-bottom: 0; }
.hubapp-comunidade-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
}

/* SVGs inline: tamanho default razoável pra nunca ficarem gigantes se faltar width/height */
.hubapp-body svg {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}
.hubapp-perfil-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.hubapp-header svg {
    width: 22px;
    height: 22px;
}
.hubapp-iconbtn svg {
    width: 22px;
    height: 22px;
}
.hubapp-support-fab svg {
    width: 26px;
    height: 26px;
}
.hubapp-bottomnav svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.hubapp-back svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ─── Empty state ─── */
.hubapp-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}
.hubapp-empty p { margin: 0 0 4px; }
.hubapp-empty small { color: var(--text-muted); }

/* ─── Toast (feedback rápido) ─── */
.hubapp-toast {
    position: fixed;
    bottom: calc(var(--bottomnav-h) + 20px + env(safe-area-inset-bottom, 0));
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-surface);
    color: var(--text-primary);
    padding: 10px 16px;
    border-radius: 100px;
    box-shadow: var(--shadow);
    font-size: 13px;
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.hubapp-toast.show { opacity: 1; }

/* ─── Screen em página padrão WP (shortcode) ─── */
.hubapp-page {
    padding: 20px 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* ─── Media center (áudio, download) ─── */
.hubapp-media-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 30px 20px;
    text-align: center;
    gap: 18px;
}
.hubapp-media-cover {
    max-width: 220px;
    width: 80%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--bg-surface-2);
}
.hubapp-media-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    max-width: 480px;
}
.hubapp-media-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
    max-width: 480px;
    line-height: 1.5;
}
.hubapp-media-audio {
    width: 100%;
    max-width: 480px;
    margin-top: 6px;
}
.hubapp-btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    min-width: 220px;
    padding: 14px 24px;
    text-decoration: none;
    font-weight: 600;
}
.hubapp-btn-download svg {
    width: 20px;
    height: 20px;
}
