/* Container */
.container-lg {
    width: 100%;
    max-width: 1140px; /* ou outro valor conforme sua necessidade */
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Layout Flexbox */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Alinhamento e Justificação */
.align-items-center {
    align-items: center;
}

.align-items-end {
    align-items: flex-end;
}

.justify-content-start {
    justify-content: flex-start;
}

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

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.justify-content-evenly {
    justify-content: space-evenly;
}

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

.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

/* Responsividade */
@media (max-width: 576px) {
    .d-sm-block {
        display: block;
    }

    .d-sm-none {
        display: none;
    }
}

/* Espaçamento */
.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: .25rem !important;
}

.p-2 {
    padding: .5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.py-5 {
    padding-top: 3rem; /* ajuste conforme necessário */
    padding-bottom: 3rem;
}

.my-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

/* Alinhamento de texto */
.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    display: flex;
    justify-content: flex-end; /* Alinha o conteúdo à direita */
    align-items: center; /* Centraliza verticalmente, se necessário */
    text-align: right !important; /* Alinha o texto à direita */
}

/* Tipografia */
.text-down-01 {
    font-size: 12px; /* Exemplo de ajuste de tamanho de fonte */
}

.text-medium {
    font-weight: 500; /* Peso médio do texto */
}

.font-weight-bold {
    font-weight: bold !important;
}

.font-italic {
    font-style: italic !important;
}

/* Utilidades */
.pb-3 {
    padding-bottom: 1rem; /* Espaçamento inferior */
}

.d-flex {
    display: flex;
}

.flex-grow-1 {
    flex-grow: 1;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.text-justify {
    text-align: justify;
}

.ml-3 {
    margin-left: 1rem;
}

.mr-10 {
    margin-right: 10px;
}
