﻿.quill-Visualizacao {
    border: none;
    width: 100%;
}

.quill-Visualizacao .ql-editor {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
/* Conteúdo */

.quill-Visualizacao .ql-editor {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0; /* Controle de leitura */
    max-width: 70ch; /* 👈 ideal para leitura */
}
/* Tablets e desktops grandes */

/* Wrapper externo que controla o layout */
.aula-texto-wrapper {
    width: 100%;
    display: flex;
    justify-content: center; /* centraliza o conteúdo */
}

/* Container do Quill (visualização) */
.aula-texto-wrapper .quill-Visualizacao {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Conteúdo real do texto */
.aula-texto-wrapper .ql-editor {
    width: 100%;
    max-width: 720px; /* 👈 largura ideal de leitura */
    padding-left: 24px;
    padding-right: 24px;
    margin: 0 auto;
    line-height: 1.65;
}

.quill-Visualizacao .ql-editor img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Tablets / desktops médios */
@media (min-width: 992px) {
    .aula-texto-wrapper .ql-editor {
        max-width: 760px;
    }
}

/* Telas grandes */
@media (min-width: 1400px) {
    .aula-texto-wrapper .ql-editor {
        max-width: 820px;
    }
}