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-fundo-escuro: #1e293b;
            --cor-texto-escuro: #e2e8f0;
            --cor-destaque-amarelo: #f59e0b;
        }

        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;
        }
        .hero-bg {
            background-image: url('https://vozativa.blog/files/casas.webp');
            background-size: cover;
            background-position: center;
        }
        h3 {
            font-size: 1.875rem;
            line-height: 2.25rem;
            font-weight: 800;
            color: var(--cor-texto-principal);
            margin-bottom: 1.5rem;
        }
        p, li {
            font-size: 1.125rem;
            line-height: 1.75rem;
            color: var(--cor-texto-secundario);
            text-align: justify;
        }
        strong {
             color: var(--cor-destaque-forte);
        }
        .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.25rem;
                line-height: 2.5rem;
            }
        }
        .section-title::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 64px;
            height: 4px;
            background-color: var(--cor-destaque-amarelo);
            border-radius: 2px;
        }
        footer p {
            text-align: center;
        }

        .dark-section .section-title {
            color: #ffffff;
        }
        .dark-section .section-title::before {
            background-color: #ffffff;
        }
        
        .conclusion-section .section-title::before {
            background-color: #dc2626;
        }
    