🔒 Restricted access

Enter the password to log in:

/* === Mantém layout de PC no celular, sem distorcer ===*/ /* Impede o zoom automático e mantém o layout fixo */ @media (max-width: 900px) { body, html { width: 1280px !important; margin: 0 auto; } /* Impede que o flex da .container se reorganize no mobile */ .container { flex-wrap: nowrap !important; justify-content: center; align-items: flex-start; } /* Permite zoom manual (pinch) no celular */ body { touch-action: auto !important; } /* Mantém tamanhos originais das boxes no celular */ .box, .slideshow, .slide, .videobox, iframe { width: 100% !important; max-width: 360px !important; } /* Faz o layout aparecer inteiro visível ao entrar */ @supports (zoom: 1) { body { transform: scale(1); /* ajusta zoom inicial */ transform-origin: top center; /* centraliza o layout */ } } }