
        .image-swap-container {
            position: relative;
            width: 100%;
            height: auto;
            overflow: hidden;
        }

        .image-a,
        .image-b-wrapper {
            transition: transform 0.6s ease-in-out;
        }

        .image-b-wrapper {
            position: absolute;
            top: 25%;
            left: 25%;
            width: 75%;
            z-index: 2;
        }

        .image-swap-container:hover .image-a {
            animation: swapA 2s linear infinite;
        }

        .image-swap-container:hover .image-b-wrapper {
            animation: swapB 2s linear infinite;
        }

        @keyframes swapA {
            0% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(25%, 25%);
                z-index: 3;
            }

            100% {
                transform: translate(0, 0);
            }
        }

        @keyframes swapB {
            0% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(-25%, -25%);
                z-index: 1;
            }

            100% {
                transform: translate(0, 0);
            }
        }

        .logo-carousel .logo-item img {
            max-height: 100px;
            max-width: 100%;
            object-fit: contain;
            padding: 10px;
            background: #fff;
            border: 1px solid #ccc;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .logo-carousel .logo-item img:hover {
            transform: scale(1.05);
        }

        .owl-carousel .owl-nav button.owl-prev,
        .owl-carousel .owl-nav button.owl-next {
            position: absolute;
            top: 40%;
            background: #f4f4f4;
            border: none;
            padding: 10px;
            font-size: 18px;
            color: #444;
            border-radius: 50%;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        }

        .owl-carousel .owl-nav button.owl-prev {
            left: -25px;
        }

        .owl-carousel .owl-nav button.owl-next {
            right: -25px;
        }

        .owl-carousel .owl-dots .owl-dot span {
            width: 12px;
            height: 12px;
            background: #ccc;
            display: block;
            border-radius: 50%;
        }

        .owl-carousel .owl-dots .owl-dot.active span {
            background: #f48c06;
        }

        .project-item {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
        }

        .project-img {
            width: 100%;
            height: 400px;
            position: relative;
        }

        .project-img img,
        .project-img video {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .project-content {
            background: rgba(0, 0, 0, 0.6);
            padding: 1rem;
            text-align: center;
            position: absolute;
            bottom: 0;
            width: 100%;
            color: #fff;
        }

        .project-content h4 {
            color: #ffc107;
            /* texto de destaque */
        }

        .project-content p {
            margin: 0;
            font-size: 0.9rem;
        }
   
