﻿body {
    background-color: #f8fafc !important;
}
:root {
    --primary-color: rgb(0, 150, 199);
}
.card-categoria-header {
    background: #fff;
    color: var(--primary-color) !important;
    border: 1px solid #f2f4ff !important;
    box-shadow: 0px 0px 13px 0px rgb(0,0,0, 0.05);
}
.card-subtitulo-header {
    background: var(--primary-color);
    padding: 0.7rem;
    color: #fff;
    border-radius:6px;
}
.subtitulo-produto {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    position: relative;
    padding-left: 6px;
}
    .subtitulo-produto::before {
        content: '';
        display: block;
        width: 2px;
        height: 100%;
        background: var(--primary-color);
        position: absolute;
        left: 0;
        border-radius: 50rem;
    }