/* Barra deprogresso */
#headerTop {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: grid;
    place-items: start;
    background: transparent;
}

div.progresso {
    width: 100%;
    height: 5px;
    margin-top: 0px;
    background: transparent;
}

div.progressoScroll {
    width: 0%;
    height: 5px;
    background: rgb(2, 0, 36);
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

/* Estilo do botão de voltar ao topo */
#back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #918888;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 25px;
    display: none; /* Começa escondido */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Fica acima de outros elementos */
}

#back-to-top:hover {
    background-color: #f1ebeb;
    border: solid 1px #000;
    color: #918888;
}

/* Exibição do botão apenas quando a página é rolada */
#back-to-top.show {
    display: flex;
}

/* Margin */
.mt-7 {
    margin-top: 7px;
}
.mr-7 {
    margin-right: 7px;
}
.mb-7 {
    margin-bottom: 7px;
}
.ml-7 {
    margin-left: 7px;
}

.mt-14 {
    margin-top: 14px;
}
.mr-14 {
    margin-right: 14px;
}
.mb-14 {
    margin-bottom: 14px;
}
.ml-14 {
    margin-left: 14px;
}

.mt-28 {
    margin-top: 28px;
}
.mr-28 {
    margin-right: 28px;
}
.mb-28 {
    margin-bottom: 28px;
}
.ml-28 {
    margin-left: 28px;
}

.mt-52 {
    margin-top: 52px;
}
.mr-52 {
    margin-right: 52px;
}
.mb-52 {
    margin-bottom: 52px;
}
.ml-52 {
    margin-left: 52px;
}

/* Padding */
.pt-7 {
    padding-top: 7px;
}
.pr-7 {
    padding-right: 7px;
}
.pb-7 {
    padding-bottom: 7px;
}
.pl-7 {
    padding-left: 7px;
}

.pt-14 {
    padding-top: 14px;
}
.pr-14 {
    padding-right: 14px;
}
.pb-14 {
    padding-bottom: 14px;
}
.pl-14 {
    padding-left: 14px;
}

.pt-28 {
    padding-top: 28px;
}
.pr-28 {
    padding-right: 28px;
}
.pb-28 {
    padding-bottom: 28px;
}
.pl-28 {
    padding-left: 28px;
}

.pt-52 {
    padding-top: 52px;
}
.pr-52 {
    padding-right: 52px;
}
.pb-52 {
    padding-bottom: 52px;
}
.pl-52 {
    padding-left: 52px;
}

/* Text Colors */
.text-primary {
    color: #007bff; /* Primary */
}
.text-secondary {
    color: #6c757d; /* Secondary */
}
.text-success {
    color: #28a745; /* Success */
}
.text-danger {
    color: #dc3545; /* Danger */
}
.text-warning {
    color: #ffc107; /* Warning */
}
.text-info {
    color: #17a2b8; /* Info */
}
.text-light {
    color: #f8f9fa; /* Light */
}
.text-dark {
    color: #343a40; /* Dark */
}
.text-muted {
    color: #6c757d; /* Muted */
}
.text-white {
    color: #ffffff; /* White */
}

/* Background Colors */
.bg-primary {
    background-color: #007bff; /* Primary */
}
.bg-secondary {
    background-color: #6c757d; /* Secondary */
}
.bg-success {
    background-color: #28a745; /* Success */
}
.bg-danger {
    background-color: #dc3545; /* Danger */
}
.bg-warning {
    background-color: #ffc107; /* Warning */
}
.bg-info {
    background-color: #17a2b8; /* Info */
}
.bg-light {
    background-color: #f8f9fa; /* Light */
}
.bg-dark {
    background-color: #343a40; /* Dark */
}
.bg-white {
    background-color: #ffffff; /* White */
}

/* Bordas */
.border {
    border: 1px solid #000;
}
.border-0 {
    border: 0;
}
.border-2 {
    border: 2px solid #000;
}
.border-4 {
    border: 4px solid #000;
}
.border-dashed {
    border: 1px dashed #000;
}
.border-dotted {
    border: 1px dotted #000;
}

/* Radius */
.radius-0 {
    border-radius: 0;
}
.radius-sm {
    border-radius: 4px;
}
.radius-md {
    border-radius: 8px;
}
.radius-lg {
    border-radius: 12px;
}
.radius-circle {
    border-radius: 50%;
}

/* Radius */
.radius-0 {
    border-radius: 0;
}
.radius-sm {
    border-radius: 4px;
}
.radius-md {
    border-radius: 8px;
}
.radius-lg {
    border-radius: 12px;
}
.radius-circle {
    border-radius: 50%;
}

/* Opacidade */
.opacity-100 {
    opacity: 1;
}
.opacity-75 {
    opacity: 0.75;
}
.opacity-50 {
    opacity: 0.5;
}
.opacity-25 {
    opacity: 0.25;
}
.opacity-0 {
    opacity: 0;
}

/* Display */
.d-block {
    display: block;
}
.d-inline {
    display: inline;
}
.d-inline-block {
    display: inline-block;
}
.d-flex {
    display: flex;
}
.d-none {
    display: none;
}

/* Alinhamento de Texto */
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-justify {
    text-align: justify;
}

