/* CONTAINER BASE */
.ui-container {
    display: flex;
    flex-wrap: wrap;
}

/* VARIAÇÕES DE ALINHAMENTO */
.justify-center {
    justify-content: center;
}

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

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

/* ESPAÇAMENTOS ENTRE IETNS */
.gap-sm {
    gap: 10px;
}

.gap-md {
    gap: 20px;
}

.gap-lg {
    gap: 30px;
}

/* MARGEM BOTTOM */
.margin-bottom-sm {
    margin-bottom: 1.3rem;
}