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 {
            --color-primary: #0d47a1;
            --color-secondary: #1976d2;
            --color-accent: #ff6f00;
            --color-background: #f4f7f9;
            --color-text: #333;
            --color-text-light: #495057;
            --color-card-bg: #ffffff;
            --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.05);
            --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
            --border-radius: 12px;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.8;
            background-color: var(--color-background);
            color: var(--color-text);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        body.ready { opacity: 1; }
        main { flex-grow: 1; display: flex; align-items: center; justify-content: center; padding: 1rem 0; }
        .header-spacer { height: 4.5rem; display: block; }
        .main-content { width: 100%; max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; padding: 0 1.5rem; }
        .content-card {
            background-color: var(--color-card-bg);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-medium);
            padding: clamp(1.5rem, 5vw, 3rem);
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        .content-card.is-visible { opacity: 1; transform: translateY(0); }
        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            border-bottom: 2px solid var(--color-accent);
            padding-bottom: 0.75rem;
        }
        .section-title .fa-solid { color: var(--color-accent); }
        .section-title > div { line-height: 1.2; }
        .section-title .subtitle { display: block; font-family: 'Inter', sans-serif; font-size: 0.5em; font-weight: 500; color: var(--color-text-light); margin-top: 4px; letter-spacing: normal; }
        .video-wrapper { position: relative; width: 100%; height: auto; padding-top: 56.25%; }
        .video-wrapper video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: var(--border-radius); }
        footer { margin-top: auto; }
        footer p { font-size: initial; line-height: initial; }
        @media (max-width: 768px) {
            .page-header { padding: 4rem 1.5rem 6rem; clip-path: ellipse(110% 65% at 50% 35%); }
            .header-title { font-size: clamp(2.9rem, 7vw, 4.2rem); }
            .header-subtitle { font-size: clamp(1.2rem, 3.5vw, 1.4rem); line-height: 1.7; }
        }
    