
        /* Estilo de la imagen normal */
        .img-scalable {
            max-width:  855px;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .img-scalable:hover {
            transform: scale(1.02);
        }

        /* Contenedor de pantalla completa (oculto por defecto) */
        .fullscreen-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9); /* Fondo oscuro semitransparente */
            z-index: 9999;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        /* Imagen dentro del contenedor de pantalla completa */
        .fullscreen-overlay img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            animation: zoomIn 0.25s ease-out;
        }

        /* Animación suave de apertura */
        @keyframes zoomIn {
            from { transform: scale(0.7); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
