:root {
    --primary: #d4af37;
    --primary-dark: #b8901f;
    --primary-soft: #faf3dd;
    --sidebar-bg: #0c0c0d;
    --bg: #f6f7fb;
    --card-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    --bs-primary: #d4af37;
}

* { box-sizing: border-box; }

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--bg);
    color: #2b2b2b;
    margin: 0;
}

h1, h2, h3, .h4, .h6 { font-weight: 700; }

a { color: var(--primary-dark); }

.btn-primary {
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-bg: var(--primary-dark);
    --bs-btn-hover-border-color: var(--primary-dark);
    --bs-btn-active-bg: var(--primary-dark);
    --bs-btn-disabled-bg: var(--primary);
    --bs-btn-disabled-border-color: var(--primary);
}
.btn-outline-primary {
    --bs-btn-color: var(--primary-dark);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-bg: var(--primary);
    --bs-btn-hover-border-color: var(--primary);
    --bs-btn-active-bg: var(--primary);
}
.text-primary { color: var(--primary-dark) !important; }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.18); }

.card { border: none; border-radius: 14px; box-shadow: var(--card-shadow); }
.card-header { background: #fff; border-bottom: 1px solid #f3eaf1; border-radius: 14px 14px 0 0 !important; }

.page-header { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.page-header h1 { font-size: 1.6rem; margin: 0; }

.stat-card { background: #fff; border-radius: 14px; padding: 1.1rem 1.25rem; box-shadow: var(--card-shadow); height: 100%; }
.stat-value { font-size: 1.6rem; font-weight: 700; line-height: 1.1; }
.stat-label { color: #8a7585; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.03em; margin-top: 0.2rem; }

/* ---------- Sidebar / layout app ---------- */
.sidebar {
    position: fixed; top: 0; left: 0; bottom: 0; width: 260px;
    background: var(--sidebar-bg); color: #fff; display: flex; flex-direction: column;
    padding: 1.25rem 0; z-index: 1050;
}
.sidebar-admin { --sidebar-bg: #14151f; background: #14151f; }
.sidebar-brand { display: flex; align-items: center; gap: 0.6rem; padding: 0 1.25rem 1.25rem; }
.sidebar-brand .logo-salao { max-height: 40px; max-width: 150px; object-fit: contain; }
.sidebar-brand-name { font-weight: 700; font-size: 1.05rem; }
.sidebar-nav { flex: 1; overflow-y: auto; padding: 0 0.75rem; }
.sidebar-nav a {
    display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 0.85rem;
    color: rgba(255,255,255,0.78); text-decoration: none; border-radius: 10px; margin-bottom: 0.2rem; font-weight: 500;
}
.sidebar-nav a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.sidebar-nav a.active { background: rgba(255,255,255,0.08); color: #fff; box-shadow: inset 3px 0 0 var(--primary); }
.sidebar-nav a i { font-size: 1.15rem; }
.sidebar-nav a .nav-badge { margin-left: auto; background: #e63946; color: #fff; font-size: 0.7rem; font-weight: 700; min-width: 20px; height: 20px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; padding: 0 0.35rem; }

/* Chat de suporte */
.chat-thread { display: flex; flex-direction: column; gap: 0.75rem; }
.chat-msg { max-width: 85%; padding: 0.7rem 0.9rem; border-radius: 12px; }
.chat-salao { align-self: flex-start; background: #f1eef8; }
.chat-admin { align-self: flex-end; background: var(--primary-soft); }
.chat-autor { font-size: 0.75rem; color: #6b7280; margin-bottom: 0.25rem; font-weight: 600; }
.chat-autor small { font-weight: 400; opacity: 0.8; }
.chat-texto { white-space: pre-wrap; word-break: break-word; }
.sidebar-footer { padding: 0.75rem 0.95rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
.sidebar-user { display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 0.4rem; color: rgba(255,255,255,0.85); }
.sidebar-user i { font-size: 1.6rem; }
.sidebar-user small { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.55); word-break: break-all; }
.sidebar-user-link { text-decoration: none; border-radius: 10px; transition: background .15s; }
.sidebar-user-link:hover { background: rgba(255,255,255,0.08); }

.avatar-img, .avatar-iniciais { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.avatar-iniciais { display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; font-weight: 700; font-size: 0.85rem; }
.avatar-sm { width: 36px; height: 36px; font-size: 0.75rem; }
.avatar-md { width: 40px; height: 40px; }
.avatar-lg { width: 56px; height: 56px; font-size: 1.1rem; }
.avatar-xl { width: 112px; height: 112px; font-size: 2rem; }
.sidebar-footer > a { display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 0.85rem; color: rgba(255,255,255,0.78); text-decoration: none; border-radius: 10px; }
.sidebar-footer > a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.sidebar-close { display: none; }

.main-content { margin-left: 260px; padding: 1.75rem; min-height: 100vh; }

.mobile-topbar { display: none; }

/* ---------- Público / landing ---------- */
.public-nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; background: var(--sidebar-bg); color: #fff; }
.public-brand { color: #fff; text-decoration: none; font-weight: 700; font-size: 1.2rem; display: inline-flex; align-items: center; gap: 0.35rem; }
.public-brand > i { font-size: 1.35rem; }
.public-brand-name { font-weight: 700; }
.brand-arrow { font-size: 1.4rem; opacity: 0.7; }
.public-brand-slogan { font-size: 0.85rem; font-weight: 500; opacity: 0.85; letter-spacing: 0.01em; }
@media (max-width: 575.98px) {
    .brand-arrow, .public-brand-slogan { display: none; }
}
.public-nav-actions { display: flex; gap: 0.5rem; }
.public-wrap { min-height: calc(100vh - 130px); }
.public-footer { text-align: center; padding: 1.5rem; color: #8a7585; }

.hero { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; padding: 4rem 1rem; text-align: center; }
.hero h1 { font-size: 2.4rem; max-width: 700px; margin: 0 auto 1rem; }
.hero-sub { font-size: 1.1rem; max-width: 560px; margin: 0 auto 1.75rem; opacity: 0.95; }
.hero-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

.features { padding: 3rem 1rem; }
.feature-card { background: #fff; border-radius: 14px; padding: 1.75rem; text-align: center; box-shadow: var(--card-shadow); height: 100%; }
.feature-card i { font-size: 2.2rem; color: var(--primary); }
.feature-card h5 { margin: 0.75rem 0 0.5rem; }

.planos-section { padding: 2rem 1rem 4rem; }
.plano-card { position: relative; background: #fff; border-radius: 16px; padding: 2rem 1.5rem; text-align: center; box-shadow: var(--card-shadow); border: 2px solid transparent; height: 100%; }
.plano-destaque { border-color: var(--primary); transform: scale(1.03); }
.plano-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; padding: 0.2rem 0.9rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.plano-preco { font-size: 2rem; font-weight: 700; color: var(--primary-dark); }
.plano-periodo { color: #8a7585; font-size: 0.85rem; }
.plano-economia { display: inline-block; margin-top: 0.5rem; background: #e7f8ee; color: #1b7a5a; font-weight: 600; font-size: 0.8rem; padding: 0.2rem 0.7rem; border-radius: 20px; }
.plano-desconto-pct { margin-top: 0.35rem; font-size: 0.8rem; font-weight: 600; color: var(--primary-dark); }
.plano-trial-tag { font-size: 0.8rem; font-weight: 600; color: var(--primary); margin-bottom: 0.5rem; }
.plano-depois-trial { font-size: 0.75rem; }
.planos-trial-banner { text-align: left; border-radius: 12px; }

.plano-radio, .metodo-radio { display: block; cursor: pointer; border: 2px solid #eadbe5; border-radius: 12px; padding: 1rem; text-align: center; transition: border-color .15s, background .15s; }
.plano-radio input, .metodo-radio input { margin-right: 0.35rem; }
.plano-radio.selecionado { border-color: var(--primary); background: var(--primary-soft); }
.metodo-radio { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.6rem 1.1rem; }

/* ---------- Auth ---------- */
.auth-container { display: flex; justify-content: center; padding: 3rem 1rem; }
.auth-card { background: #fff; border-radius: 16px; box-shadow: var(--card-shadow); padding: 2rem; width: 100%; max-width: 420px; }
.auth-card-lg { max-width: 720px; }
.auth-title { font-size: 1.5rem; margin-bottom: 1rem; }

/* ---------- Assinatura / pagamento ---------- */
.assinatura-wrap { max-width: 760px; margin: 0 auto; padding: 1.5rem 1rem; }
.assinatura-topbar { margin-bottom: 1rem; }
.pix-box { text-align: center; }
.pix-qr { width: 240px; max-width: 80vw; }
.status-pagamento { font-weight: 600; }
.logo-preview { display: flex; align-items: center; justify-content: center; min-height: 120px; background: repeating-conic-gradient(#f0f0f0 0% 25%, #fff 0% 50%) 50% / 20px 20px; border-radius: 10px; padding: 1rem; }
.logo-preview img { max-height: 120px; max-width: 100%; object-fit: contain; }

.senha-requisitos { list-style: none; padding: 0; margin: 0.5rem 0 0; font-size: 0.82rem; }
.senha-requisitos li { color: #8a7585; display: flex; align-items: center; gap: 0.4rem; padding: 0.1rem 0; }
.senha-requisitos li i { font-size: 0.85rem; }
.senha-requisitos li.ok { color: #1b7a5a; }

.preview-planos { display: flex; flex-direction: column; gap: 0.6rem; }
.preview-plano { display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; padding: 0.8rem 1rem; border: 1px solid #eadbe5; border-radius: 12px; flex-wrap: wrap; }
.preview-plano span { font-weight: 600; }
.preview-plano em { font-style: normal; font-size: 0.8rem; margin-left: 0.3rem; }
.preview-plano strong { font-size: 1.25rem; color: var(--primary-dark); margin-left: auto; }
.preview-plano small { flex: 0 0 100%; }

/* Paleta de cores */
.paleta-cores { display: grid; grid-template-columns: repeat(auto-fill, minmax(48px, 1fr)); gap: 0.5rem; }
.cor-opcao { position: relative; cursor: pointer; }
.cor-opcao input { position: absolute; opacity: 0; }
.cor-swatch { display: block; height: 44px; border-radius: 10px; border: 3px solid transparent; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08); transition: transform .1s; }
.cor-opcao:hover .cor-swatch { transform: scale(1.06); }
.cor-opcao input:checked + .cor-swatch { border-color: #1f2937; box-shadow: 0 0 0 2px #fff, 0 0 0 4px #1f2937; }

.actions-cell { white-space: nowrap; }
.actions-cell .btn { margin-right: 0.2rem; }
.badge { font-weight: 600; }

/* ---------- Mobile ---------- */
@media (max-width: 991.98px) {
    .mobile-topbar {
        display: flex; position: fixed; top: 0; left: 0; right: 0;
        height: calc(56px + env(safe-area-inset-top, 0px)); padding-top: env(safe-area-inset-top, 0px);
        background: var(--sidebar-bg); color: #fff; align-items: center; gap: 0.6rem;
        padding-left: max(0.75rem, env(safe-area-inset-left, 0px)); padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
        z-index: 1040; box-shadow: 0 2px 16px rgba(0,0,0,0.18);
    }
    .btn-mobile-menu, .btn-mobile-action {
        display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
        border: none; border-radius: 10px; background: rgba(255,255,255,0.15); color: #fff; font-size: 1.25rem; text-decoration: none;
    }
    .mobile-topbar-brand { flex: 1; display: flex; align-items: center; justify-content: center; min-width: 0; }
    .mobile-topbar-brand .logo-salao { max-height: 38px; max-width: 160px; object-fit: contain; }
    .mobile-topbar-brand .brand-text { font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

    .sidebar { transform: translateX(-100%); transition: transform .28s ease; width: min(280px, 86vw); box-shadow: 4px 0 24px rgba(0,0,0,0.25); padding-top: env(safe-area-inset-top, 0px); }
    .sidebar.open { transform: translateX(0); }
    .sidebar-close { display: inline-flex; position: absolute; top: 0.75rem; right: 0.75rem; width: 38px; height: 38px; align-items: center; justify-content: center; border: none; border-radius: 10px; background: rgba(255,255,255,0.12); color: #fff; }
    .sidebar-brand { padding-top: 2.5rem; }

    .sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 1045; }
    .sidebar-overlay.show { display: block; }
    body.sidebar-open { overflow: hidden; }

    .main-content { margin-left: 0; padding: 0.9rem; padding-top: calc(56px + env(safe-area-inset-top, 0px) + 0.9rem); }
    .page-header h1 { font-size: 1.35rem; }
    .hero h1 { font-size: 1.8rem; }
}

@media (min-width: 992px) {
    .mobile-topbar, .sidebar-overlay, .sidebar-close { display: none !important; }
}

/* Tabelas viram cards no celular */
@media (max-width: 767.98px) {
    .card > .table-responsive { padding: 0.65rem; background: #faf6f9; overflow-x: visible; }
    .card > .table-responsive .table { margin: 0; background: transparent; }
    .table thead { display: none; }
    .table tbody { display: flex; flex-direction: column; gap: 0.7rem; }
    .table tbody tr { display: block; background: #fff; border: 1px solid #efe3ec; border-radius: 12px; padding: 0.85rem 1rem; box-shadow: 0 1px 6px rgba(74,20,60,0.06); }
    .table tbody td { display: block; padding: 0.3rem 0; border: none; text-align: left; }
    .table tbody td::before { content: attr(data-label); display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.04em; color: #a98ca0; font-weight: 600; margin-bottom: 0.15rem; }
    .table tbody td:not([data-label])::before { content: none; }
    .table tbody td strong { font-size: 1.02rem; }
    .table tbody tr:has(td[colspan]) { background: transparent; border: none; box-shadow: none; }
    .table tbody td[colspan] { text-align: center; }
    .table tbody td[colspan]::before { content: none; }
    .actions-cell { display: flex; flex-wrap: wrap; gap: 0.4rem; padding-top: 0.65rem; margin-top: 0.35rem; border-top: 1px solid #f3eaf1; }
    .actions-cell::before { flex: 0 0 100%; }
    .actions-cell .btn, .actions-cell form { flex: 1 1 auto; margin: 0; }
    .actions-cell form .btn { width: 100%; }
}

/* ============================================================
   Tema PRETO / BRANCO / DOURADO — área pública (landing, login,
   cadastro e pagamento). Não afeta o app do salão nem o admin.
   ============================================================ */
body.ctx-public {
    --gold: #d4af37;
    --gold-dark: #b8901f;
    --gold-soft: rgba(212, 175, 55, 0.12);
    --bg-dark: #0c0c0d;
    --surface: #161617;
    --surface-2: #101011;
    --line: #2a2a2c;
    --txt: #f1f0ee;
    --txt-muted: #9b9794;
    background: var(--bg-dark);
    color: var(--txt);
}

body.ctx-public h1,
body.ctx-public h2,
body.ctx-public h3,
body.ctx-public h4,
body.ctx-public h5,
body.ctx-public .auth-title { color: #fff; }

body.ctx-public a:not(.btn) { color: var(--gold); }
body.ctx-public a:not(.btn):hover { color: var(--gold-dark); }
body.ctx-public .text-muted { color: var(--txt-muted) !important; }
body.ctx-public hr { border-color: var(--line); opacity: 1; }

/* Navbar */
body.ctx-public .public-nav { background: #000; border-bottom: 1px solid var(--gold-soft); }
body.ctx-public .public-brand,
body.ctx-public .public-brand-name { color: #fff; }
body.ctx-public .public-brand > i,
body.ctx-public .brand-arrow { color: var(--gold); opacity: 1; }
body.ctx-public .public-brand-slogan { color: var(--gold); opacity: 0.85; }

/* Botões */
body.ctx-public .btn-primary,
body.ctx-public .btn-light {
    --bs-btn-bg: var(--gold);
    --bs-btn-border-color: var(--gold);
    --bs-btn-color: #14110a;
    --bs-btn-hover-bg: var(--gold-dark);
    --bs-btn-hover-border-color: var(--gold-dark);
    --bs-btn-hover-color: #14110a;
    --bs-btn-active-bg: var(--gold-dark);
    --bs-btn-active-border-color: var(--gold-dark);
    --bs-btn-active-color: #14110a;
    --bs-btn-disabled-bg: var(--gold);
    --bs-btn-disabled-border-color: var(--gold);
    --bs-btn-disabled-color: #14110a;
    font-weight: 700;
}
body.ctx-public .btn-outline-light,
body.ctx-public .btn-outline-primary {
    --bs-btn-color: var(--gold);
    --bs-btn-border-color: var(--gold);
    --bs-btn-hover-bg: var(--gold);
    --bs-btn-hover-border-color: var(--gold);
    --bs-btn-hover-color: #14110a;
    --bs-btn-active-bg: var(--gold);
    --bs-btn-active-color: #14110a;
}
body.ctx-public .btn-secondary {
    --bs-btn-bg: transparent;
    --bs-btn-border-color: var(--line);
    --bs-btn-color: var(--txt);
    --bs-btn-hover-bg: #1e1e20;
    --bs-btn-hover-border-color: #3a3a3d;
    --bs-btn-hover-color: #fff;
}

/* Hero */
body.ctx-public .hero {
    background:
        radial-gradient(1200px 400px at 50% -10%, rgba(212, 175, 55, 0.18), transparent 60%),
        linear-gradient(180deg, #000 0%, #131314 100%);
    color: #fff;
    border-bottom: 1px solid var(--gold-soft);
}
body.ctx-public .hero-sub { color: #d8d4cf; opacity: 1; }

/* Cards de recurso */
body.ctx-public .feature-card {
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--txt);
    box-shadow: none;
}
body.ctx-public .feature-card i { color: var(--gold); }
body.ctx-public .feature-card h5 { color: #fff; }
body.ctx-public .feature-card p { color: var(--txt-muted); }

/* Planos */
body.ctx-public .plano-card {
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--txt);
    box-shadow: none;
}
body.ctx-public .plano-destaque { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 12px 40px rgba(212, 175, 55, 0.12); }
body.ctx-public .plano-badge { background: var(--gold); color: #14110a; }
body.ctx-public .plano-preco { color: var(--gold); }
body.ctx-public .plano-periodo { color: var(--txt-muted); }
body.ctx-public .plano-economia { background: var(--gold-soft); color: var(--gold); }

/* Auth (login / cadastro) */
body.ctx-public .auth-card {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    color: var(--txt);
}
body.ctx-public .form-label { color: #d9d6d2; font-weight: 600; }
body.ctx-public .form-control,
body.ctx-public .form-select {
    background: var(--surface-2);
    border-color: var(--line);
    color: var(--txt);
}
body.ctx-public .form-control::placeholder { color: #6f6b67; }
body.ctx-public .form-control:focus,
body.ctx-public .form-select:focus {
    background: var(--surface-2);
    border-color: var(--gold);
    color: var(--txt);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.2);
}
body.ctx-public .input-group-text { background: #1c1c1e; border-color: var(--line); color: var(--txt-muted); }

/* Seleção de plano/método no cadastro e assinatura pública */
body.ctx-public .plano-radio,
body.ctx-public .metodo-radio { border-color: var(--line); background: var(--surface-2); color: var(--txt); }
body.ctx-public .plano-radio.selecionado,
body.ctx-public .metodo-radio:has(input:checked) { border-color: var(--gold); background: var(--gold-soft); }

/* Requisitos de senha e textos auxiliares */
body.ctx-public .senha-requisitos li { color: var(--txt-muted); }
body.ctx-public .senha-requisitos li.ok { color: var(--gold); }

/* Alertas mantêm contraste em fundo escuro */
body.ctx-public .alert { border: 1px solid var(--line); }

/* Rodapé */
body.ctx-public .public-footer { color: #6f6b67; border-top: 1px solid var(--line); }

/* Login / Cadastro estilo "portal" */
body.ctx-public .auth-container { padding: 4rem 1rem; }
body.ctx-public .auth-card { padding: 2.4rem 2.1rem; border-radius: 18px; }
body.ctx-public .auth-brand {
    display: flex; align-items: center; justify-content: center; gap: 0.45rem;
    font-weight: 700; font-size: 1.25rem; color: #fff; margin-bottom: 0.2rem;
}
body.ctx-public .auth-brand i { color: var(--gold); font-size: 1.4rem; }
body.ctx-public .auth-eyebrow {
    text-align: center; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); font-weight: 700; margin-bottom: 0.6rem;
}
body.ctx-public .auth-title {
    text-align: center; text-transform: uppercase; letter-spacing: 0.06em;
    font-size: 1.7rem; margin-bottom: 0;
}
body.ctx-public .auth-tabs {
    display: flex; margin: 1.2rem 0 1.6rem; border-bottom: 1px solid var(--line);
}
body.ctx-public .auth-tabs a {
    flex: 1; text-align: center; padding: 0.65rem 0.5rem; font-weight: 600;
    color: var(--txt-muted); text-decoration: none; border-bottom: 2px solid transparent; margin-bottom: -1px;
}
body.ctx-public .auth-tabs a:hover { color: #fff; }
body.ctx-public .auth-tabs a.active { color: var(--gold); border-bottom-color: var(--gold); }
body.ctx-public .auth-card .form-label {
    text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.72rem; color: #c9c5c0;
}
body.ctx-public .auth-foot {
    margin-top: 1.4rem; text-align: center; display: flex; flex-direction: column; gap: 0.35rem;
    font-size: 0.85rem; color: var(--txt-muted);
}
body.ctx-public .form-check-label { color: var(--txt-muted); }

/* Páginas legais (termos / privacidade) */
body.ctx-public .legal-page { max-width: 820px; margin: 0 auto; padding: 2.5rem 1rem 3rem; }
body.ctx-public .legal-page h1 { margin-bottom: 0.3rem; }
body.ctx-public .legal-page h2 { font-size: 1.1rem; color: var(--gold); margin-top: 1.8rem; }
body.ctx-public .legal-page p, body.ctx-public .legal-page li { color: #cfcbc6; line-height: 1.7; }
