diff --git a/_layouts/projetos.html b/_layouts/projetos.html
index b1fa9b29..272f8dff 100644
--- a/_layouts/projetos.html
+++ b/_layouts/projetos.html
@@ -3,34 +3,6 @@ layout: default
title: "{{ page.file }}"
---
-
-
{% include sidebar.html %}
diff --git a/assets/css/style.css b/assets/css/style.css
index b3cd1313..ed598ae1 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -22,18 +22,19 @@
/* =============================================== */
/* LAYOUT GERAL
/* =============================================== */
-body {
- margin: 0;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
- background-color: var(--bg-body);
- color: var(--text-light);
- height: 100vh;
- /* Removemos overflow hidden para permitir scroll na página de projetos se necessário,
- ou mantemos se o design for fixed */
- overflow-y: auto;
- display: flex;
- flex-direction: column;
-}
+html, body {
+ margin: 0;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
+ background-color: var(--bg-body);
+ color: var(--text-light);
+
+ /* --- A CORREÇÃO ESTÁ AQUI --- */
+ display: block !important; /* Desativa o Flexbox do App */
+ height: auto !important; /* Permite que a página cresça além da tela */
+ min-height: 100vh; /* Garante altura mínima */
+ overflow-y: auto !important; /* FORÇA A BARRA DE ROLAGEM VERTICAL */
+ overflow-x: hidden !important; /* Evita rolagem lateral indesejada */
+ }
/* Scrollbars Padrão */
::-webkit-scrollbar { height: 10px; width: 10px; }