 /* Estilos para el menú de aplicaciones */
        .apps-menu-container {
            position: fixed;
            top: 10px;
            right: 20px;
            z-index: 1000;
            margin-top: 20px;
        }

        .menu-trigger {
            background: linear-gradient(135deg, #b3b1b1, #a1a09f);
            border: none;
            cursor: pointer;
            padding: 12px 15px;
            border-radius: 24px;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 4px 12px rgba(187, 208, 236, 0.3);
        }

        .menu-trigger:hover {
            background: linear-gradient(135deg, #c0d2e9, #eee6e3);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(214, 222, 233, 0.4);
        }

        .more-icon-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .dots-icon {
            margin-bottom: 3px;
            width: 30px;
            height: 10px;
        }

        .more-text {
            font-size: 13px;
            font-weight: 600;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .dots-icon circle {
            transition: transform 0.2s ease;
            fill: white;
        }

        .menu-trigger:hover .dots-icon circle {
            transform: scale(1.1);
        }

        .menu-trigger:hover .dots-icon circle:nth-child(1) {
            transform: translateX(-1px);
        }

        .menu-trigger:hover .dots-icon circle:nth-child(3) {
            transform: translateX(1px);
        }

        .apps-grid {
            display: none;
            position: absolute;
            right: 0;
            top: 60px;
            width: 320px;
            background-color: white;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            padding: 15px;
            z-index: 1001;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            animation: fadeIn 0.25s ease-out;
        }

        .apps-grid.visible {
            display: grid;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .menu-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 110px;
            border-radius: 12px;
            transition: all 0.3s;
            background: #f8f9fa;
            padding: 10px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .menu-option:hover {
            background: #e8f0fe;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(66, 133, 244, 0.2);
        }

        .menu-option:hover::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #c0d2e9, #f5a181);
        }

        .menu-option a {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #202124;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .menu-icon-img {
            width: 68px;
            height: 68px;
            object-fit: contain;
            margin-bottom: 10px;
            transition: transform 0.3s;
        }

        .menu-option:hover .menu-icon-img {
            transform: scale(1.1);
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
        }

        .menu-option span {
            font-size: 13px;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .apps-grid {
                width: 280px;
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .apps-grid {
                width: 260px;
            }
        }


        /* Media Queries para Responsive Design */
@media (max-width: 768px) {
    .apps-grid {
        width: 280px;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 12px;
        top: 60px;
    }
    
    .menu-trigger {
        padding: 12px 14px;
    }
    
    .more-text {
        font-size: 12px;
    }
    
    .menu-option {
        height: 100px;
    }
    
    .menu-icon-img {
        width: 42px;
        height: 42px;
    }
    
    .menu-option span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .apps-menu-container {
        top: 15px;
        right: 15px;
    }
    
    .apps-grid {
        width: 260px;
        top: 55px;
        gap: 8px;
        padding: 10px;
    }
    
    .menu-trigger {
        padding: 10px 12px;
        border-radius: 20px;
    }
    
    .more-icon-container {
        width: 24px;
    }
    
    .dots-icon {
        width: 24px;
        height: 8px;
    }
    
    .menu-option {
        height: 90px;
        border-radius: 10px;
    }
    
    .menu-icon-img {
        width: 38px;
        height: 38px;
        margin-bottom: 8px;
    }
}

@media (max-width: 360px) {
    .apps-grid {
        width: 240px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-trigger {
        padding: 8px 10px;
    }
    
    .more-text {
        font-size: 11px;
    }
    
    .menu-option {
        height: 85px;
        padding: 8px;
    }
    
    .menu-option span {
        font-size: 11px;
    }
}

/* Para pantallas muy pequeñas en orientación vertical */
@media (max-width: 320px) and (max-height: 480px) {
    .apps-grid {
        width: 220px;
        top: 50px;
    }
    
    .menu-option {
        height: 80px;
    }
    
    .menu-icon-img {
        width: 34px;
        height: 34px;
    }
}

/* Ajustes para dispositivos con pantallas altas */
@media (min-width: 481px) and (max-height: 700px) {
    .apps-menu-container {
        top: 10px;
        right: 10px;
    }
    
    .apps-grid {
        top: 50px;
    }
}

/* Orientación horizontal en móviles */
@media (max-width: 900px) and (orientation: landscape) {
    .apps-grid {
        top: 50px;
        width: 300px;
        max-height: 200px;
        overflow-y: auto;
    }
    
    .menu-option {
        height: 90px;
    }
}