 
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f4ff;
        }
        .navbar {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            background-color: #006666;
            padding: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            border: 0.5px solid #007bff;
            margin-bottom: 20px;
            width: 100%;
            opacity: 0;
            transform: translateY(-20px);
            animation: dropInContainer 0.5s forwards;
        }
        .nav-item {
            margin: 5px;
            padding: 10px 15px;
            text-decoration: none;
            color: #ff6666;
            border-radius: 15px;
            transition: background-color 0.3s, color 0.3s, transform 0.3s;
            font-size: 16px;
            opacity: 0;
            transform: translateY(-20px);
            animation: dropIn 0.5s forwards;
        }
        .nav-item:hover {
            color: #ffff33;
        }
        .logo-container {
            display: flex;
            align-items: center;
            margin-left: 10px;
        }
        .logo-container img {
            max-height: 130px;
            width: auto;
        }
        .titulo {
            margin-right: 30px;
            font-size: 65px;
            color: #ffffff;
        }
        @media (max-width: 600px) {
            .nav-item {
                font-size: 14px;
                padding: 8px 10px;
            }
            .logo-container img {
                max-height: 100px;
            }
            .titulo {
                font-size: 40px; /* Ajuste o tamanho da fonte em telas pequenas */
            }
        }
        @keyframes dropInContainer {
            0% { opacity: 0; transform: translateY(-20px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes dropIn {
            0% { opacity: 0; transform: translateY(-20px); }
            100% { opacity: 1; transform: translateY(0); }
        }
    