        /* INICIO DA PERSONALIZAÇÃO DO H1 e a LOGO */
            .tech-container {
                display: flex;
                align-items: center;
                justify-content: space-between; /* Mantém "Tech" à esquerda e a logo à direita */
                max-width: 600px; /* Ajuste conforme necessário */
                width: 100%;
                position: relative; /* Permite ajustes manuais da logo */
            }

            .custom-h1 {
                background-color: #626263; /* Cinza escuro */
                color: white;
                font-size: 20px;
                font-weight: bold;
                padding: 12px 20px;
                border: none;
                border-radius: 8px;
                transition: 0.3s;
                text-align: left;
                max-width: 726px;
                width: 100%;
                margin: 0;
            }

            .logo-tech {
                width: 350px;
                height: auto;
                position: absolute;
                right: -450px;
                top: -100px;
            }

            /* Ajuste para telas menores (mobile) */
            @media (max-width: 768px) { 
                .logo-tech {
                    width: 120px; /* Reduz o tamanho da logo para telas menores */
                    right: 0; /* Ajusta para garantir que fique visível */
                    top: -50px; /* Movimenta para uma posição mais visível */
                }
            }

        /* Ajustar as Section para o Celular */
        @media (max-width: 768px) {
            #curriculum ul,
            #documents ul {
                margin-left: 0 !important;
                padding-left: 15px;
            }
        }


            /* Inicio Imagem e-Mec no Rodapé */
            .parceiros {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
                align-items: center;
            }

            .parceiros img {
                width: 100%;
                max-width: 250px;
            }

            @media (max-width: 768px) {
                .parceiros {
                    flex-direction: column;
                    gap: 10px;
                }

                .parceiros img {
                    max-width: 200px;
                }
            }