<style>

        /*ESTILOS GERAIS - Pagina inicial*/
        html {
            scroll-behavior: smooth;
        }

        body {
            background-image: 
                linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
                url("../assets/img/background.png");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            font-family: sans-serif, Helvetica, Arial;
            color: white;
            margin: 0;
            padding: 40px;
        }

        h1, h2, table {
            scroll-margin-top: 80px;
        }

        p {
            text-align: center;
            font-size: 16px;
            line-height: 1.6;
            margin-top: 10px;
            margin-bottom: 10px;
        }

        /*HEADER E MENU*/
        h1 {
            position: fixed;
            top: 40px;
            left: 30px;
            margin: 0;
            z-index: 10000;
            width: 190px;
            border: 2px solid black;
            display: block;
            margin: 1 auto;
            font-size: 25px;
            text-align: center;
            background-color: rgba(0,0,0,0.5); 
        }
        
        .menu-container {
            position: fixed;
            top: 82px;
            left: 34px;
            z-index: 9999; 
            background-color: rgba(172, 51, 51, 0.9);   
            padding: 10px;
            border-radius: 8px;
            cursor: pointer;
            padding-bottom: 14px;
        }
        
        /* Acessibilidade: Contorno ao focar com teclado */
        .menu-container:focus-within {
            outline: 2px solid white;
        }
        
        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 4px 0;
            transition: 0.3s;
        }

        .menu-links {
            position: absolute; top: 52px; left: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(4px);     
            transition: opacity .15s ease, transform .15s ease, visibility .15s;
            list-style: none;
            margin: 0;
            padding: 6px 0;
            background: rgba(0,0,0,0.85);
            min-width: 220px;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 8px;
            z-index: 1000;
            backdrop-filter: blur(2px);
        }

        .menu-title {
            padding: 10px 14px;
            color: #ddd;
            font-size: 14px;
            border-bottom: 1px solid rgba(255,255,255,0.12);
        }

        .menu-links li {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        
        .menu-links li:first-child { border-top: 0; }

        .menu-links a {
            color: white;
            text-decoration: none;
            font-size: 15px;
            white-space: nowrap;
            display: block;      
            padding: 10px 14px;
            transition: background-color 0.2s ease;
        }

        .menu-links li:hover > a,
        .menu-links a:focus {
            background-color: rgba(255, 255, 255, 0.06);
            outline: none;
        }

        .menu-container:hover .menu-links,
        .menu-container:focus-within .menu-links {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        video {
            display: block;
            margin: 100px auto 20px auto; 
            border-radius: 10px;
            max-width: 50%;
        }

        .direitos-autorais {
            text-align: center;
            font-size: 12px;
            opacity: 0.8;
            margin-bottom: 40px;
        }

        /*ABELA E CAIXA DE TEXTO*/
        table {
            border-collapse: collapse;
            margin: 60px auto;
            width: 60%; 
        }

        table thead {
            background-color: rgb(172, 51, 51);
        }

        table th {
            padding: 15px;
            text-align: center;
        }

        table tbody tr:nth-child(odd) {
            background-color: rgb(14, 13, 13);
        }

        table tbody tr:nth-child(even) {
            background-color: rgb(25, 25, 25);
        }

        table td {
            padding: 12px 20px;
            line-height: 1.5;
        }

        h2 {
            text-align: center;
            margin-top: 80px;
        }

        .caixa-texto {
            border: 1px solid #444;
            font-size: 16px;
            text-align: justify; 
            padding: 30px; 
            line-height: 1.8; 
            margin: 0 auto;
            width: 60%;
            background-color: rgba(0, 0, 0, 0.6);
            box-sizing: border-box;
            border-radius: 8px;
        }

        /*RODAPÉ*/
        .Autor {
            text-align: center;
            margin-top: 50px;
            padding-bottom: 30px;
            opacity: 0.8;
            font-family: Arial, Helvetica, sans-serif;
        }
        
        .Autor a:focus {
            outline: 2px dashed white;
            padding: 4px;
        }

        /*RESPONSIVIDADE (CELULAR)*/
        @media (max-width: 768px) {
            body {
                padding: 20px;
            }

            h1 {
                position: static; 
                margin: 0 auto 30px auto;
                width: 100%;
            }

            .menu-container {
                top: 15px;
                left: 15px;
            }

            video {
                max-width: 100%; 
                margin-top: 40px;
            }

            table, .caixa-texto {
                width: 100%; 
                padding: 15px;
            }
        }
        
</style>