        @keyframes slideIcon {
            0% { transform: translateY(-10px); }
            50% { transform: translateY(0); }
            100% { transform: translateY(-10px); }
        }
        @keyframes fade {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }
        @keyframes slide {
            0% { transform: translateY(100px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }

        body {
            margin: 0;
            font-family: 'Roboto', sans-serif;
            background-color: #f0f2f5;
        }

        .page-container {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .navbar {
            display: flex;
            width: 100%;
            background-color: #FFF;
            height: 50px;
            border-bottom: 3px solid #E07828;
            justify-content: space-between;
            align-items: center;
            padding: 0 6rem;
            box-sizing: border-box;
        }

        .navbar .logo-section {
            display: flex;
            align-items: center;
        }

        .navbar .logo-section img {
            height: 30px;
        }

        .navbar .logo-section .logo-text {
            font-size: 0.82rem;
            font-weight: bold;
            color: #004e90;
            margin-left: 10px;
        }

        .navbar .nav-links {
            display: flex;
            align-items: center;
        }

        .navbar .nav-link-item {
            display: flex;
            align-items: center;
            text-decoration: none;
            margin-left: 1rem;
        }

        .navbar .nav-link-item img {
            height: 18px;
        }

        .navbar .nav-link-item .link-text {
            font-size: 0.82rem;
            font-weight: bold;
            color: #004e90;
            margin-left: 10px;
            padding-right: 10px;
            margin-right: 10px;
            border-right: 2px solid #1E306F;
            white-space: nowrap;
        }
        
        .navbar .nav-link-item:last-child .link-text {
            border-right: none;
        }


        .main-content {
            flex-grow: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            background-image: url('../img/bg-login.png');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            padding: 2rem;
        }

        .links-container {
            max-width: 900px;
            padding: 2rem;
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 15px;
            backdrop-filter: blur(5px);
            animation: fade 1s linear;
        }

        .main-title {
            color: #FFF;
            text-align: center;
            font-size: 1.4rem;
            font-weight: 500;
            letter-spacing: 0.8px;
            margin: 0;
            margin-bottom: 2rem;
            animation: slide 0.5s linear;
        }

        .texto-transparencia {
            display: block;
            width: 600px;
            max-width: 90%;
            margin: 0 auto 2rem;
            animation: fade 1s linear;
        }

        .links-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            justify-items: center;
            animation: slide 0.8s linear;
        }

        .link-item {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #ffffff92;
            border-radius: 15px;
            padding: 15px;
            transition: transform 0.2s ease-in-out;
            height: 60px;
            width: 150px;
            text-decoration: none;
        }

        .link-item:hover {
            transform: scale(1.05);
        }

        .link-item img {
            height: 40px;
            width: 100px;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .links-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .navbar { 
                padding: 0 1rem;
            }

            .navbar .logo-text, .navbar .link-text {
                display: none;
            }
        }

        @media (max-width: 700px) {
            .links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 500px) {
            .links-grid {
                grid-template-columns: 1fr;
            }
        }

        .footer {
            padding: 2rem;
            background-color: #FFF;
            text-align: center;
        }

        .footer-logo {
            width: 120px;
            height: auto;
        }

        @media (min-width: 600px) {
            .footer-logo {
                width: 220px;
            }
        }
