:root {
    --cbic-red: #ff3f4f;
    --cbic-blue: #0c4da2;
    --cbic-blue-dk: #083a80;
    --ink: #0d1b2f;
    --muted: #66758b;
    --line: #dbe6f5;
    --panel: #ffffff;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Montserrat', system-ui, sans-serif;
    color: var(--ink);
    background:
        linear-gradient(135deg, rgba(12,77,162,.18), transparent 36%),
        linear-gradient(220deg, rgba(255,63,79,.14), transparent 42%),
        #f5f8fc;
}

.checkout-page {
    width: min(1180px, calc(100vw - 2rem));
    margin: 0 auto;
    padding: 1.5rem 0 2.5rem;
}

.checkout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,.85);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(13, 27, 47, .06);
}

.checkout-brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--ink);
    text-decoration: none;
}

.checkout-brand img {
    height: 50px;
}

.checkout-brand-text {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    padding-left: 1.1rem;
    border-left: 1px solid #cbd8e8;
}

.checkout-brand-text strong {
    font-size: 1.08rem;
    font-weight: 900;
    letter-spacing: -.01em;
    color: var(--ink);
}

.checkout-brand-text small {
    font-size: .74rem;
    font-weight: 650;
    color: var(--muted);
}

.checkout-back {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--cbic-blue);
    text-decoration: none;
    font-weight: 800;
    font-size: .84rem;
    padding: .68rem 1.25rem;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    background: #fff;
    white-space: nowrap;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.checkout-back i {
    transition: transform .18s ease;
}

.checkout-back:hover {
    background: var(--cbic-blue);
    border-color: var(--cbic-blue);
    color: #fff;
    box-shadow: 0 10px 24px rgba(12, 77, 162, .28);
}

.checkout-back:hover i {
    transform: translateX(-3px);
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 1.25rem;
    align-items: start;
}

.checkout-form-container,
.summary-card {
    background: rgba(255,255,255,.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(13, 27, 47, .08);
}

.checkout-form-container {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.checkout-hero {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    padding-bottom: 1.35rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 1.25rem;
}

.checkout-eyebrow {
    color: var(--cbic-red);
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.checkout-hero h1 {
    margin: .35rem 0 .4rem;
    font-size: clamp(1.8rem, 4vw, 2.65rem);
    line-height: 1;
    letter-spacing: -.045em;
}

.checkout-hero p,
.summary-card p,
.section-note {
    margin: 0;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.55;
}

.checkout-mode-badge {
    flex: 0 0 auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    border-radius: 999px;
    padding: .7rem .95rem;
    color: #fff;
    background: linear-gradient(135deg, var(--cbic-blue), var(--cbic-red));
    font-size: .76rem;
    font-weight: 900;
}

.checkout-alert {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1rem;
    padding: .85rem 1rem;
    border: 1px solid rgba(255,63,79,.25);
    border-radius: 12px;
    background: rgba(255,63,79,.07);
    color: #b42318;
    font-size: .86rem;
    font-weight: 800;
}

.checkout-section {
    padding: 1rem 0;
    border-bottom: 1px solid #edf2f8;
}

.checkout-section:last-of-type {
    border-bottom: 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin: 0 0 .9rem;
    color: var(--ink);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section-title i {
    color: var(--cbic-red);
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
}

.form-row.compact {
    gap: .55rem;
}

.form-group {
    margin-bottom: .85rem;
}

.form-group label {
    display: block;
    margin-bottom: .35rem;
    color: #475569;
    font-size: .72rem;
    font-weight: 850;
}

input,
select {
    width: 100%;
    min-height: 46px;
    padding: .72rem .85rem;
    border: 1px solid #cddbea;
    border-radius: 11px;
    background: #f8fbff;
    color: var(--ink);
    font: 700 .84rem 'Montserrat', sans-serif;
    outline: none;
    transition: border-color .18s, box-shadow .18s, background .18s;
}

input:focus,
select:focus {
    border-color: var(--cbic-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(12,77,162,.11);
}

.field-feedback {
    min-height: 18px;
    margin-top: .3rem;
    font-size: .72rem;
    font-weight: 800;
}

.logged-card {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f8fbff;
}

.logged-avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--cbic-blue), var(--cbic-red));
    font-weight: 900;
}

.logged-card strong { font-weight: 900; }
.logged-card span { color: var(--muted); font-size: .84rem; }

.license-users-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}

.license-user-card {
    padding: .85rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: linear-gradient(180deg, #fff, #f8fbff);
}

.license-user-card input {
    min-height: 40px;
    margin-top: .5rem;
    font-size: .78rem;
}

.license-user-card select {
    min-height: 42px;
    margin-top: .35rem;
    font-size: .76rem;
}

.license-select-label {
    display: block;
    margin-top: .7rem;
    color: #475569;
    font-size: .68rem;
    font-weight: 900;
}

.license-or {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin: .65rem 0 .15rem;
    color: #718096;
    font-size: .68rem;
    font-weight: 800;
}

.license-or::before,
.license-or::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e3ebf5;
}

.license-new-fields.is-disabled {
    opacity: .46;
}

.license-new-fields.is-disabled input {
    pointer-events: none;
}

.license-user-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    color: var(--cbic-blue);
    font-size: .76rem;
    font-weight: 900;
}

.license-user-head small {
    padding: .22rem .45rem;
    border-radius: 999px;
    color: var(--cbic-red);
    background: rgba(255,63,79,.08);
}

.payment-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .7rem;
}

.pay-tab {
    min-height: 72px;
    display: grid;
    place-items: center;
    gap: .35rem;
    padding: .8rem;
    border: 1.5px solid var(--line);
    border-radius: 13px;
    color: #64748b;
    background: #fff;
    cursor: pointer;
    font-size: .78rem;
    font-weight: 850;
    transition: all .18s ease;
}

.pay-tab i {
    color: #94a3b8;
    font-size: 1.35rem;
}

.pay-tab.active,
.pay-tab:hover {
    border-color: var(--cbic-red);
    color: var(--cbic-red);
    background: #fff7f8;
}

.pay-tab.active i,
.pay-tab:hover i {
    color: var(--cbic-red);
}

.btn-checkout {
    width: 100%;
    min-height: 54px;
    margin-top: 1rem;
    border: 0;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--cbic-red), #dc2637);
    box-shadow: 0 14px 30px rgba(255,63,79,.23);
    font: 900 .86rem 'Montserrat', sans-serif;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
}

.summary-card {
    position: sticky;
    top: 1.25rem;
    padding: 1.35rem;
}

.summary-plan {
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 900;
}

.summary-price {
    margin: .75rem 0;
    color: var(--cbic-red);
    font-size: 1.9rem;
    font-weight: 950;
    letter-spacing: -.04em;
    transition: opacity .18s ease;
}

.summary-price.is-updating {
    opacity: .45;
}

.summary-price span {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
}

#summaryTotalVal {
    transition: opacity .18s ease;
}

#summaryTotalVal.is-updating {
    opacity: .45;
}

.summary-line,
.summary-total {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.summary-line {
    padding: .7rem 0;
    border-bottom: 1px dashed #cbd8e8;
    color: #475569;
    font-size: .8rem;
    font-weight: 750;
}

.summary-total {
    margin-top: .75rem;
    padding-top: .9rem;
    border-top: 2px solid #e6edf6;
    font-size: .96rem;
    font-weight: 900;
}

.summary-safe {
    display: flex;
    gap: .55rem;
    margin-top: 1rem;
    padding: .85rem;
    border-radius: 12px;
    color: #475569;
    background: #f3f7fc;
    font-size: .74rem;
    font-weight: 750;
    line-height: 1.45;
}

.summary-safe i {
    color: var(--cbic-blue);
}

.summary-fiscal-note {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-top: .55rem;
    padding: 0 .2rem;
    color: #8a94a6;
    font-size: .68rem;
    font-weight: 650;
    line-height: 1.4;
}

.summary-fiscal-note i {
    color: #a8b3c4;
    font-size: .78rem;
}

@media (max-width: 980px) {
    .checkout-page {
        width: min(100%, calc(100vw - 1rem));
        padding: .8rem 0 1.5rem;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .summary-card {
        position: static;
        order: -1;
    }
}

@media (max-width: 640px) {
    .checkout-header {
        flex-direction: column;
        align-items: stretch;
        gap: .85rem;
        padding: .9rem 1rem;
    }

    .checkout-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-row,
    .license-users-grid,
    .payment-tabs {
        grid-template-columns: 1fr;
    }

    .checkout-brand img {
        height: 38px;
    }

    .checkout-brand-text strong {
        font-size: .95rem;
    }

    .checkout-back {
        justify-content: center;
    }
}

/* ── Cycle Switcher label ────────────────────────────────────────── */
.cycle-switcher-label {
    margin: 0 0 .4rem;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #7096b8;
}

/* ── Cycle Switcher (mensal / anual) — segmented control ─────────── */
.cycle-switcher {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 1rem;
    padding: 4px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e8f0fb 0%, #ddeaf8 100%);
    border: 1px solid #c8daf5;
    box-shadow: inset 0 1px 3px rgba(30,74,148,.08);
}

/* Sliding pill — positions itself based on data-selected */
.cycle-switcher::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    border-radius: 12px;
    background: #fff;
    border: 1.5px solid #b8d4f5;
    box-shadow: 0 2px 10px rgba(30,74,148,.18), 0 1px 3px rgba(30,74,148,.1);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
}

.cycle-switcher[data-selected="yearly"]::before {
    transform: translateX(100%);
}

/* Buttons */
.cycle-btn {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: .65rem .5rem .55rem;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: #7096b8;
    cursor: pointer;
    transition: color .22s ease, transform .1s ease;
    font-family: inherit;
    line-height: 1.25;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.cycle-btn:active {
    transform: scale(.97);
}

.cycle-btn.active {
    color: var(--cbic-blue);
}

.cycle-btn:not(.active):hover {
    color: #3b6bb5;
}

/* Text inside buttons */
.cycle-btn .cb-name {
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
    transition: color .22s;
}

.cycle-btn .cb-price {
    font-size: .88rem;
    font-weight: 800;
    color: inherit;
    transition: color .22s;
}

/* Selo "ate Nx%" com o maior desconto por forma de pagamento configurado no
   plano — mesmo selo da vitrine de planos, colado na palavra Anual aqui tambem. */
.cycle-btn .cb-star-badge {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    text-transform: none;
    font-weight: 800;
    font-size: .58rem;
    letter-spacing: .01em;
    color: #8a6d00;
    background: rgba(250, 201, 0, .18);
    border-radius: 999px;
    padding: .1rem .4rem;
    margin-left: .25rem;
    vertical-align: middle;
}

.cycle-btn .cb-star-badge .bi-star-fill {
    color: #eab308;
    font-size: .62rem;
}

/* Savings badge */
.cycle-btn .cb-save {
    display: inline-block;
    font-style: normal;
    font-size: .62rem;
    font-weight: 800;
    color: #15803d;
    background: #dcfce7;
    border-radius: 20px;
    padding: .06rem .5rem;
    letter-spacing: .03em;
    margin-top: 1px;
    transition: background .22s, color .22s;
}

.cycle-btn.active .cb-save {
    background: #bbf7d0;
    color: #166534;
}

/* Escolha de forma de pagamento no anual (PIX/Boleto vs Cartao) — quando o
   desconto configurado no plano e diferente entre os dois. Cards empilhados
   (nao o segmented-control do cycle-switcher) porque o conteudo aqui varia
   muito mais de tamanho (parcelamento, etc) e apertar em 2 colunas ficava
   desalinhado quando um texto quebrava linha e o outro nao. */
.payment-group-chooser {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1rem;
}

.payment-group-option {
    display: flex;
    align-items: center;
    gap: .7rem;
    width: 100%;
    padding: .7rem .9rem;
    border-radius: 12px;
    border: 1.5px solid #c8daf5;
    background: #f7fafd;
    cursor: pointer;
    text-align: left;
    transition: border-color .18s ease, background-color .18s ease;
    font-family: inherit;
}

.payment-group-option:hover {
    border-color: #8fb4e8;
}

.payment-group-option.active {
    border-color: var(--cbic-blue);
    background: #eef5ff;
    box-shadow: 0 0 0 1px var(--cbic-blue);
}

.pgo-radio {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #b8d0ee;
    background: #fff;
    position: relative;
    transition: border-color .18s ease;
}

.payment-group-option.active .pgo-radio {
    border-color: var(--cbic-blue);
}

.payment-group-option.active .pgo-radio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cbic-blue);
}

.pgo-info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.pgo-name {
    font-size: .74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #3b5f8f;
}

.payment-group-option.active .pgo-name {
    color: var(--cbic-blue);
}

.pgo-price {
    font-size: .86rem;
    font-weight: 700;
    color: #1c3a5e;
}

.pgo-save {
    flex-shrink: 0;
    font-size: .68rem;
    font-weight: 800;
    color: #15803d;
    background: #dcfce7;
    border-radius: 20px;
    padding: .18rem .55rem;
    letter-spacing: .02em;
    white-space: nowrap;
}

.checkout-field-error {
    margin: -.4rem 0 .9rem;
    font-size: .74rem;
    font-weight: 700;
    color: #b42318;
}

.checkout-payment-reminder {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .9rem;
    padding: .65rem .85rem;
    border-radius: 10px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-size: .8rem;
    font-weight: 600;
}

/* ── "Usar dados do responsável" Toggle ───────────────────────────── */
.use-responsible-toggle {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: .9rem;
    padding: .65rem .9rem;
    border-radius: 12px;
    background: #f4f8ff;
    border: 1.5px solid #c8daf5;
    cursor: pointer;
    user-select: none;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
    font-size: .8rem;
    font-weight: 700;
    color: #475569;
    -webkit-tap-highlight-color: transparent;
}

.use-responsible-toggle:hover {
    background: #eaf1fd;
    border-color: #7aadde;
    box-shadow: 0 2px 8px rgba(30,74,148,.1);
}

.use-responsible-toggle.is-active {
    background: #eff6ff;
    border-color: var(--cbic-blue);
    box-shadow: 0 2px 10px rgba(30,74,148,.13);
    color: #1e4a94;
}

.use-responsible-toggle input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.toggle-label {
    flex: 1;
    font-size: .79rem;
    font-weight: 700;
    line-height: 1.35;
}

/* Toggle track */
.toggle-track {
    position: relative;
    flex-shrink: 0;
    width: 40px;
    height: 22px;
    border-radius: 22px;
    background: #cbd5e1;
    border: 1.5px solid #b0c4d8;
    transition: background .25s cubic-bezier(.4,0,.2,1), border-color .25s;
}

.use-responsible-toggle.is-active .toggle-track {
    background: var(--cbic-blue);
    border-color: #1a3f82;
}

/* Toggle thumb */
.toggle-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.3);
    transition: left .25s cubic-bezier(.4,0,.2,1), width .15s;
}

.use-responsible-toggle:active .toggle-thumb {
    width: 18px; /* stretch on press */
}

.use-responsible-toggle.is-active .toggle-track .toggle-thumb {
    left: 20px;
}

.use-responsible-toggle.is-active:active .toggle-track .toggle-thumb {
    left: 16px;
}

/* Mirrored (readonly) state for license fields */
.license-new-fields.is-mirrored .form-input,
.license-new-fields.is-mirrored .form-select,
.license-new-fields.is-mirrored input,
.license-new-fields.is-mirrored select {
    background: #f0f6ff;
    color: #475569;
    border-color: #b8d0ef;
    cursor: not-allowed;
    opacity: .9;
}

.license-new-fields.is-mirrored .form-group label {
    color: #7096c4;
}

/* Badge "Responsável" */
.badge-responsible {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .15rem .55rem;
    border-radius: 20px;
    background: #dbeafe;
    color: #1e4a94;
    font-size: .67rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    vertical-align: middle;
}

/* Badge "Opcional" */
.badge-optional {
    display: inline-flex;
    align-items: center;
    padding: .15rem .55rem;
    border-radius: 20px;
    background: #f1f5f9;
    color: #94a3b8;
    font-size: .67rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    vertical-align: middle;
}

/* Screen-reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Link "solicitar documento fiscal" (secao Pagamento) + modal de contato —
   pagina standalone, sem Bootstrap JS, entao o modal e feito na mao. */
.fiscal-doc-link-wrap {
    margin-top: .5rem !important;
    color: var(--muted);
}

.fiscal-doc-link {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: var(--cbic-blue);
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
}

.fiscal-doc-link:hover {
    color: var(--cbic-red);
}

.fiscal-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 25, 45, .55);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.fiscal-modal {
    position: relative;
    width: min(420px, 100%);
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.75rem 1.75rem;
    text-align: center;
    box-shadow: 0 30px 70px rgba(10, 25, 47, .3);
}

.fiscal-modal-close {
    position: absolute;
    top: .9rem;
    right: .9rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, color .15s ease;
}

.fiscal-modal-close:hover {
    background: #e2e8f0;
    color: var(--cbic-navy);
}

.fiscal-modal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: #eef5ff;
    color: var(--cbic-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.fiscal-modal h3 {
    margin: 0 0 .5rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--cbic-navy);
}

.fiscal-modal p {
    margin: 0 0 1.25rem;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.55;
}

.fiscal-modal-contact {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.fiscal-modal-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1rem;
    border-radius: 12px;
    background: #f7fafd;
    border: 1px solid #dce6f2;
    color: var(--cbic-navy);
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: border-color .15s ease, background-color .15s ease;
}

.fiscal-modal-contact a:hover {
    border-color: var(--cbic-blue);
    background: #eef5ff;
}

.fiscal-modal-contact a i {
    color: var(--cbic-blue);
}
