body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 16px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
/* Desabilitar seleção de texto */
body {
-webkit-user-select: none; /* Chrome/Safari */
-moz-user-select: none;    /* Firefox */
-ms-user-select: none;     /* IE/Edge */
user-select: none;         /* Padrão */
}
        :root {
            --cor-fundo: #f8fafc;
            --cor-texto-principal: #1e293b;
            --cor-texto-secundario: #334155;
            --cor-destaque-forte: #0f172a;
            --cor-lama: #5D4037;
            --cor-agua-suja: #455A64;
            --cor-alerta: #b91c1c;
        }

        body {
            opacity: 0;
            transition: opacity 0.4s ease-in-out;
            font-family: 'Inter', sans-serif;
            background-color: var(--cor-fundo);
            color: var(--cor-texto-principal);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        body.ready {
            opacity: 1;
        }
        
        /* Tipografia de Leitura para o corpo do texto - AUMENTADA para uniformizar */
        .prose-text {
            font-family: 'Merriweather', serif;
            font-size: 1.25rem; /* Aumentado para corresponder ou superar ligeiramente o text-lg */
            line-height: 1.9;
            color: #334155;
        }

        .hero-bg {
            background-image: url('https://images.unsplash.com/photo-1486016006115-74a41448aea2?q=80&w=2000&auto=format&fit=crop'); 
            background-size: cover;
            background-position: center;
        }
        
        .hero-overlay {
            background: linear-gradient(to bottom, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.95));
        }

        h3 {
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            color: var(--cor-texto-principal);
        }

        .section-title {
             position: relative;
             padding-top: 2rem;
             font-size: 1.875rem;
             line-height: 2.25rem;
             font-weight: 800;
             color: var(--cor-texto-principal);
             margin-bottom: 3rem;
             text-align: center;
        }
        @media (min-width: 768px) {
            .section-title {
                font-size: 2.5rem;
                line-height: 2.8rem;
            }
        }
        .section-title::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 6px;
            background-color: var(--cor-lama);
            border-radius: 3px;
        }
        
        .dark-section {
            background-color: #1c1917; /* Stone 900 */
            color: #d6d3d1;
        }
        .dark-section .section-title {
            color: #ffffff;
        }
        .dark-section .section-title::before {
            background-color: #dc2626; /* Vermelho Alerta */
        }

        /* Estilo para as datas do diário */
        .diary-date {
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            letter-spacing: -0.05em;
        }
    