/* ==========================================================================
   Camada de Estilos de Segurança e Proteção Anti-Cópia / Anti-Download
   ========================================================================== */

/* Desativa seleção de texto em toda a aplicação para prevenir cópias */
body, .unselectable {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
}

/* Permite seleção apenas em campos de digitação */
input, textarea {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Container do Visualizador Protegido */
.drive-embed-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}

/* 
 * Escudo transparente no canto superior direito do iframe.
 * Bloqueia o clique no botão "Abrir em nova aba" do Google Drive,
 * garantindo que o aluno NUNCA saia do site e NUNCA veja o botão "Baixar tudo".
 */
.drive-popout-shield {
    position: absolute;
    top: 0;
    right: 0;
    width: 95px;
    height: 65px;
    background: transparent;
    z-index: 30;
    cursor: default;
}

.secure-viewer-frame {
    width: 100%;
    height: 100%;
    border: none;
    background: #111827;
}

/* Regras Estritas de Impressão - Conteúdo Invisível ao tentar Imprimir */
@media print {
    html, body {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
    }
}
