.header-top{
            display: none;
        }
        header .header-nav .nav-products{
            top: 100px;
        }





        
        div.tag{
            font-size: 14px;
            line-height: 1.3;
            color: #595757;
            margin: 20px 0 0 0;
        }
        div.tag span {
            font-weight: 700;
        }
        div.tag a {
            margin-right: 10px;
            text-transform: capitalize
        }

        div.tag a:hover {
            color: #f8c300
        }

        .pro2-solution{
            display: flex;          
            justify-content: space-between;
        }
        .pro2-solution>div{
            display: flex;    
            width: 48%;      
        }
        .pro2-solution>div div{
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            align-items: flex-start;
            background: #fff;
            padding: 24px;
            font-weight: bold;
        }

        .pro2-solution img{
            width: 348px;
        }

        .case-btn {
            padding: 12px 30px;
            background-color: #F8C300;
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
            font-size: 16px;
            box-shadow: 2px 2px 0 0 #C79C00;
        }
        
        .case-btn:hover {
            background-color: #041e41;
            color: #fff;
        }

        .videos-nav {
            color: #898989;
            font-size: 14px;
            margin: 14px 0 40px 0;
        }

        .videos-title{
            margin: 60px 0 30px 0;
            font-size: 32px;
        }

        .videos-subtitle{
            margin: 40px 0 80px 0;
            color: #5D6366;
            font-size: 14px;
            line-height: 1.6;
        }
        .videos-subtitle p{
            margin-bottom: 20px;
        }

        .product-title{
            margin: 0 0 40px 0;
            font-size: 24px;
            font-weight: 600;
        }

        .product-video-box{
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .product-video-box iframe {
            height: 755px;
            width: 100%;
            background: #000;
        }
        .box-recomendados{
            background: rgba(247, 247, 247, 1);
            margin-bottom: 80px;
            padding: 60px 0 80px 0;
        }

        .videos-images{
            margin-bottom: 60px;
        }

        .images-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            margin: -10px;
        }

        .images-grid img{
            margin: 10px;
            width: 365px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .images-grid img:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            margin: -20px;
        }

        .video-card {
            display: inline-block;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .video-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .video-thumbnail {
            position: relative;
            width: 100%;
            height: 270px;
            background: #ddd;
            overflow: hidden;
        }

        .video-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 56px;
            height: 56px;
            transition: all 0.2s ease;
        }

        .play-button:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-info {
            display: inline-block;
            padding: 18px 24px 24px 24px;
        }

        .video-title {
            font-weight: bold;
            margin-bottom: 8px;
            font-size: 18px;
            color: #1e293b;
        }

        .video-tags {
            font-size: 12px;
            color: #5D6366;
        }

        .video-card:hover .video-info{
            background: #f8c300;
        }

        /* ===== Video Modal (Supports both local videos and YouTube) ===== */
        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .video-modal.active {
            display: flex;
        }

        .modal-content {
            width: 70%;
            max-width: 1000px;
            background-color: #000000;
            overflow: hidden;
            border: 4px solid #f8c300;
            position: relative;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
        }

        .modal-content video {
            width: 100%;
            display: block;
        }

        .modal-content iframe {
            width: 100%;
            height: 560px;
            display: block;
            border: none;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 60px;
            color: #ffffff;
            cursor: pointer;
            z-index: 1001;
            font-weight: 300;
            text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: #f8c300;
        }

        /* Image Modal */
        .image-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .image-modal.active {
            display: flex;
        }

        .image-modal-content {
            max-width: 90vw;
            max-height: 90vh;
            position: relative;
        }

        .image-modal-content img {
            max-width: 90vw;
            max-height: 90vh;
            object-fit: contain;
            border: 4px solid #f8c300;
            transform: scale(1.3);
        }

        .close-image-modal {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 60px;
            color: #ffffff;
            cursor: pointer;
            z-index: 1001;
            font-weight: 300;
            text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            transition: color 0.3s ease;
        }

        .close-image-modal:hover {
            color: #f8c300;
        }

        .box-case{
            margin:  0 0 30px 0;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .images-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .modal-content {
                width: 95%;
            }
            .modal-content iframe {
                height: 300px;
            }
            .images-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .video-grid {
                grid-template-columns: repeat(1, 1fr);
            }
            .videos-title {
                font-size: 24px;
            }
            .product-title {
                font-size: 20px;
            }
            .close-modal, .close-image-modal {
                top: 10px;
                right: 20px;
                font-size: 40px;
            }
        }