        @font-face {
            font-family: "CodeSaver";
            src: url("CodeSaver-Regular.otf") format("opentype");
            font-weight: normal;
            font-style: normal;
        }
                
        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: #11111100; }
        ::-webkit-scrollbar-thumb { background: #840A0A; border-radius: 0px; }
        ::-webkit-scrollbar-thumb:hover { background: #840A0A; }
        
        @keyframes load {
            0% { opacity: 0; transform: translateY(15px); }
            100% { opacity: 1; transform: none; }
        }

        .animacion-de-entrada {
            animation: load 1.5s ease-out forwards;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: "CodeSaver", Helvetica, Arial, sans-serif;
            background-color: #ffffff;
            color: #333;
            line-height: 1.6;
            padding: 0 40px;
            overflow-x: hidden;
        }

        .insta-link {
            position: fixed;
            top: 30px;
            right: 40px;
            text-decoration: none;
            color: #840A0A;
            font-size: 30px;
            opacity: 0.6;
            transition: opacity 0.3s;
            z-index: 2000;
        }
        .insta-link:hover { opacity: 1; }

        header { margin-top: 8px; margin-bottom: 30px; text-align: center; }
        .logo-container { display: flex; flex-direction: column; align-items: center; gap: 15px; margin-bottom: 40px; }
        .main-logo-img { margin-top: 3%; max-width: 230px; height: auto; transition: all 0.3s ease; }
        .main-logo-img:hover { transform: scale(1.05); }

        .menu-container { list-style: none; display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; padding: 0; }
        .menu a, .menu-active a {
            text-decoration: none; color: #333; font-size: 13px; text-transform: lowercase;
            padding-bottom: 5px; display: inline-block; transition: all 0.3s; font-weight: bold;
        }
        .menu a:hover { color: #840A0A; transform: scale(1.15); }
        .menu-active a { font-weight: bolder; color: #840A0A; font-size: 13px; transform: scale(1.15); }

        .galeria-arte {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto 5px auto;
            padding-bottom: 0px;
        }

        .art-item {
            display: inline-block;
            width: 100%;
            margin-bottom: 20px;
            position: relative;
            cursor: pointer;
            overflow: hidden;
            border-radius: 4px;
        }

        .art-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.4s ease;
        }

        .fullscreen-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(194, 194, 194, 0.521);
            color: white;
            padding: 2px 7px;
            border-radius: 4px;
            font-size: 20px;
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
            z-index: 5;
            pointer-events: none;
        }

        .art-item:hover img { transform: scale(1.05); }
        .art-item:hover .fullscreen-icon { opacity: 1; transform: translateY(0); }

        .divisor { display: flex; align-items: center; text-align: center; max-width: 1200px; margin: 40px auto; }
        .divisor::before, .divisor::after { content: ""; flex: 1; border-bottom: 4px solid #840A0A; }
        .divisor span { padding: 0 15px; font-weight: bold; color: #840A0A; text-transform: uppercase; font-size: 14px; }

        .secondary-gallery {
            display: flex;
            justify-content: center;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto 80px auto;
            flex-wrap: wrap; 
        }
        
        .secondary-gallery .art-item {
            flex: 0 1 calc(50% - 10px); 
            margin-bottom: 0; 
        }

        .lightbox {
            position: fixed; 
            top: 0; 
            left: 0; 
            width: 100vw; 
            height: 100vh;
            background: rgba(0, 0, 0, 0.95); 
            display: none;
            justify-content: center; 
            align-items: center;
            z-index: 9999; 
            cursor: zoom-out;
        }

        .lightbox img {
            max-width: 90vw; 
            max-height: 90vh;
            width: auto;
            height: auto;
            object-fit: contain;
            box-shadow: 0 0 20px rgba(0,0,0,0.5); 
            border-radius: 4px;
            animation: zoomIn 0.3s ease;
        }

        @keyframes zoomIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .footer {
            position: fixed; bottom: 0; left: 0; width: 100%;
            background-color: rgba(255, 255, 255, 0);
            padding: 20px 40px; text-align: right; z-index: 1000;
            pointer-events: none;
        }
        .footer p { font-size: 11px; color: #666; letter-spacing: 0.5px; pointer-events: auto; }

        @media (max-width: 900px) {
            .galeria-arte { 
                grid-template-columns: repeat(2, 1fr); 
            }
        }

        @media (max-width: 600px) { 
            .galeria-arte { 
                grid-template-columns: 1fr; 
            }
            .secondary-gallery .art-item { 
                flex: 0 1 100%; 
                margin-bottom: 20px; 
            }
            .footer { text-align: center; } 
            body { padding: 0 20px; }
        }