body {
    font-family: 'Barlow', sans-serif;
}

.font-monospace {
    font-family: 'JetBrains Mono', monospace !important;
}

/* Forma: Paralelogramo (Entrada) */
.shape-io {
    transform: skewX(-20deg);
}

.shape-io span {
    transform: skewX(20deg);
}

/* Forma: Diamante (Decisão) */
.shape-decision {
    transform: rotate(45deg);
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape-decision span {
    transform: rotate(-45deg);
    max-width: 150px; /* Garante que o texto não saia do diamante */
    word-wrap: break-word;
    text-align: center;
}

/* Seta */
.arrow {
    width: 2px;
    height: 30px;
    background-color: #333;
    position: relative;
}

.arrow::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -4px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #333;
}

textarea {
    font-size: 0.9rem;
}

.text-sm, .text-small {
    font-size: 13px !important;
}

.child-font-family-inherit * {
    font-family: inherit !important;
}

:is(summary, .bar-info-summary, summary)::marker {
    list-style-type: none;
    font-family: bootstrap-icons, sans-serif;
    content: "+ ";
}