
/* Título principal */
.OperacaoDoSistema h1 {
    font-size: 2.5rem;
    color: #006699;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid #006699;
    display: inline-block;
    padding-bottom: 0.5rem;
}

/* Subtítulos */
.OperacaoDoSistema h2 {
    font-size: 1.8rem;
    color: #006699;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Parágrafos */
.OperacaoDoSistema p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    text-align: justify;
    margin: 1.5rem 0;
}

/* Containers de gráficos */
.OperacaoDoSistema .chart-container-sistema {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.OperacaoDoSistema canvas {
    width: 100% !important;
    height: auto !important;
}

/* Responsividade */
@media (max-width: 768px) {
    .OperacaoDoSistema h1 {
        font-size: 2rem;
    }

    .OperacaoDoSistema h2 {
        font-size: 1.5rem;
    }

    .OperacaoDoSistema p {
        font-size: 1rem;
    }
}
