    html {
        scroll-behavior: smooth;
        overflow-x: hidden;
    }

.loop-eventos-1-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0;
            padding-top: 20px;
            padding-bottom: 20px;
        }

        .loop-eventos-1-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .loop-eventos-1-title {
            font-size: 24px;
            font-weight: 700;
            color: #2d3142;
        }

        .loop-eventos-1-view-all {
            font-size: 16px;
            font-weight: 500;
            color: #0091ff;
            text-decoration: none;
        }

        .loop-eventos-1-carousel .owl-item {
            padding: 5px;
        }

        .loop-eventos-1-item {
            background-color: #fff;
            border-radius: 8px;
            padding: 20px;
            height: 130px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .loop-eventos-1-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .loop-eventos-1-icon {
            width: 40px;
            height: 40px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .loop-eventos-1-icon svg {
            width: 100%;
            height: 100%;
            fill: #666;
        }

        .loop-eventos-1-icon.tim svg path {
            fill: #E10D41;
        }

        .loop-eventos-1-label {
            font-size: 14px;
            font-weight: 500;
            color: #666;
            max-width: 90%;
            line-height: 1.2;
        }

        .owl-theme .owl-controls .owl-buttons div {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #fff;
            color: #666;
            padding: 5px 10px;
            border-radius: 50%;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .owl-theme .owl-controls .owl-buttons .owl-prev {
            left: -15px;
        }

        .owl-theme .owl-controls .owl-buttons .owl-next {
            right: -15px;
        }

        @media (max-width: 768px) {
            .loop-eventos-1-header {
                margin-bottom: 16px;
            }
            
            .loop-eventos-1-title {
                font-size: 20px;
            }
            
            .loop-eventos-1-view-all {
                font-size: 14px;
            }
            
            .loop-eventos-1-item {
                padding: 15px;
                height: 120px;
            }
            
            .loop-eventos-1-icon {
                width: 32px;
                height: 32px;
                margin-bottom: 8px;
            }
            
            .loop-eventos-1-label {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .loop-eventos-1-container {
                padding: 15px 10px;
            }
            
            .loop-eventos-1-title {
                font-size: 18px;
            }
            
            .loop-eventos-1-item {
                height: 110px;
            }
        }


         .sugestoes-tags-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 20px 0;
            position: relative;
        }

        .sugestoes-tags-title {
            font-size: 24px;
            font-weight: 700;
            color: #2E2C41;
            margin-bottom: 24px;
        }

        .sugestoes-tags-carousel-container {
            position: relative;
            overflow: hidden;
        }

        .sugestoes-tags-gradient-overlay {
            position: absolute;
            top: 0;
            right: 0;
            width: 80px;
            height: 100%;
            background: linear-gradient(90deg, rgba(245,245,245,0) 0%, rgba(245,245,245,1) 100%);
            z-index: 10;
            pointer-events: none;
        }

        .sugestoes-tags-rows {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .sugestoes-tags-row {
            display: flex;
            gap: 12px;
            overflow: hidden;
        }

        .sugestoes-tags-link {
            display: inline-flex;
            align-items: center;
            padding: 10px 16px;
            background-color: #fff;
            border-radius: 50px;
            text-decoration: none;
            color: #333;
            font-size: 14px;
            font-weight: 400;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            white-space: nowrap;
        }

        .sugestoes-tags-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
        }

        .sugestoes-tags-icon {
            margin-left: 8px;
            display: flex;
            align-items: center;
        }

        .sugestoes-tags-icon svg {
            width: 16px;
            height: 16px;
            fill: #555;
        }

        .sugestoes-tags-navigation {
            position: relative;
            width: 100%;
            height: 2px;
            background-color: #ddd;
            margin-top: 24px;
            border-radius: 2px;
            margin-bottom: 35px !important;
        }

        .sugestoes-tags-prev,
        .sugestoes-tags-next {
            position: absolute;
            width: 32px;
            height: 32px;
            background-color: #fff;
            border-radius: 50%;
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            top: 50%;
            transform: translateY(-50%);
            z-index: 20;
        }

        .sugestoes-tags-prev {
            left: 0;
        }

        .sugestoes-tags-next {
            right: 0;
        }

        .sugestoes-tags-prev svg,
        .sugestoes-tags-next svg {
            width: 16px;
            height: 16px;
            fill: #666;
        }

        .sugestoes-tags-progress {
            height: 100%;
            background-color: #aaa;
            border-radius: 2px;
            width: 25%;
            transition: width 0.3s ease;
        }

        @media (max-width: 768px) {
            .sugestoes-tags-container {
                padding: 15px 0;
            }
            
            .sugestoes-tags-title {
                font-size: 20px;
                margin-bottom: 16px;
            }
            
            .sugestoes-tags-link {
                padding: 8px 12px;
                font-size: 13px;
            }

            .sugestoes-tags-gradient-overlay {
                width: 60px;
            }
        }

        @media (max-width: 480px) {
            .sugestoes-tags-title {
                font-size: 18px;
            }
            
            .sugestoes-tags-link {
                padding: 6px 10px;
                font-size: 12px;
            }

            .sugestoes-tags-gradient-overlay {
                width: 40px;
            }
        }

         .loop-eventos-2-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 20px 0;
        }

        .loop-eventos-2-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .loop-eventos-2-title {
            font-size: 28px;
            font-weight: 600;
            color: #2d3142;
            margin: 0;
        }

        .loop-eventos-2-view-all {
            font-size: 16px;
            font-weight: 500;
            color: #0091ff;
            text-decoration: none;
        }

        .loop-eventos-2-carousel {
            position: relative;
        }

        .loop-eventos-2-carousel .owl-item {
            padding: 0 10px;
        }

        .loop-eventos-2-item {
            display: flex;
            flex-direction: column;
            overflow: hidden;
            height: 100%;
        }

        .loop-eventos-2-image-container {
            position: relative;
            width: 100%;
            padding-top: 56.25%; /* 16:9 Aspect Ratio */
            overflow: hidden;
            border-radius: 8px;
        }

        .loop-eventos-2-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100% !important;
            object-fit: cover;
        }

        .loop-eventos-2-content {
            padding: 12px 0;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .loop-eventos-2-event-title {
            font-size: 18px;
            font-weight: 600;
            color: #2d3142;
            margin-bottom: 8px;
            line-height: 1.3;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100%;
        }

        .loop-eventos-2-event-location {
            font-size: 14px;
            color: #666;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .loop-eventos-2-event-date {
            font-size: 14px;
            color: #666;
        }

        .loop-eventos-2-navigation {
            position: absolute;
            top: 30%;
            transform: translateY(-50%);
            width: 100%;
            z-index: 10;
            pointer-events: none;
        }

        .loop-eventos-2-navigation .loop-eventos-2-prev,
        .loop-eventos-2-navigation .loop-eventos-2-next {
            position: absolute;
            width: 40px;
            height: 40px;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            pointer-events: auto;
        }

        .loop-eventos-2-navigation .loop-eventos-2-prev {
            left: -20px;
        }

        .loop-eventos-2-navigation .loop-eventos-2-next {
            right: -20px;
        }

        .loop-eventos-2-navigation svg {
            width: 24px;
            height: 24px;
            fill: #555;
        }

        @media (max-width: 768px) {
            .loop-eventos-2-container {
                padding: 15px 0;
            }
            
            .loop-eventos-2-header {
                margin-bottom: 16px;
            }
            
            .loop-eventos-2-title {
                font-size: 22px;
            }
            
            .loop-eventos-2-view-all {
                font-size: 14px;
            }
            
            .loop-eventos-2-event-title {
                font-size: 16px;
            }
            
            .loop-eventos-2-content {
                padding: 10px 0;
            }
            
            .loop-eventos-2-navigation .loop-eventos-2-prev {
                left: -15px;
            }
            
            .loop-eventos-2-navigation .loop-eventos-2-next {
                right: -15px;
            }
        }

        @media (max-width: 480px) {
            .loop-eventos-2-title {
                font-size: 20px;
            }
            
            .loop-eventos-2-event-title {
                font-size: 15px;
            }
            
            .loop-eventos-2-event-location,
            .loop-eventos-2-event-date {
                font-size: 13px;
            }
            
            .loop-eventos-2-carousel .owl-item {
                padding: 0 5px;
            }
        }

         .loop-eventos-3-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 20px 0;
            position: relative;
        }

        .loop-eventos-3-header {
            display: flex;
            align-items: center;
            margin-bottom: 24px;
            position: relative;
        }

        .loop-eventos-3-title {
            font-size: 24px;
            font-weight: 600;
            color: #2a2a2a;
            margin-right: 10px;
            display: flex;
            align-items: center;
        }

        .loop-eventos-3-icon {
            width: 24px;
            height: 24px;
            background-color: #0047ba;
            border-radius: 3px;
            margin-left: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .loop-eventos-3-icon svg {
            width: 16px;
            height: 16px;
            fill: #fff;
        }

        .loop-eventos-3-navigation {
            position: absolute;
            right: 0;
            top: 0;
            display: flex;
            gap: 8px;
        }

        .loop-eventos-3-nav-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #0063fb;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: background-color 0.2s ease;
        }

        .loop-eventos-3-nav-btn:hover {
            background-color: #0056e0;
        }

        .loop-eventos-3-nav-btn svg {
            width: 20px;
            height: 20px;
            fill: #fff;
        }

        .loop-eventos-3-carousel .owl-item {
            padding: 0 8px;
        }

        .loop-eventos-3-item {
            display: flex;
            flex-direction: column;
        }

        .loop-eventos-3-image-container {
            position: relative;
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            margin-bottom: 12px;
        }

        .loop-eventos-3-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }

        .loop-eventos-3-badge {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background-color: rgba(0, 0, 0, 0.7);
            color: #fff;
            font-size: 11px;
            padding: 4px 8px;
            border-radius: 3px;
        }

        .loop-eventos-3-event-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .loop-eventos-3-availability {
            font-size: 14px;
            color: #666;
        }

        .loop-eventos-3-audio-badge {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background-color: rgba(255, 255, 255, 0.9);
            color: #333;
            font-size: 11px;
            padding: 4px 8px;
            border-radius: 3px;
            display: flex;
            align-items: center;
            font-weight: 500;
        }

        .loop-eventos-3-audio-badge svg {
            width: 12px;
            height: 12px;
            margin-right: 4px;
            fill: #333;
        }

        @media (max-width: 768px) {
            .loop-eventos-3-container {
                padding: 15px 0;
            }
            
            .loop-eventos-3-title {
                font-size: 20px;
            }
            
            .loop-eventos-3-nav-btn {
                width: 32px;
                height: 32px;
            }
            
            .loop-eventos-3-nav-btn svg {
                width: 18px;
                height: 18px;
            }
            
            .loop-eventos-3-event-title {
                font-size: 14px;
            }
            
            .loop-eventos-3-availability {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .loop-eventos-3-header {
                margin-bottom: 16px;
            }
            
            .loop-eventos-3-title {
                font-size: 18px;
            }
            
            .loop-eventos-3-nav-btn {
                width: 28px;
                height: 28px;
            }
            
            .loop-eventos-3-nav-btn svg {
                width: 16px;
                height: 16px;
            }
            
            .loop-eventos-3-carousel .owl-item {
                padding: 0 5px;
            }
        }

        .titulo-padrao-plugin-tema-eventos {
            font-size: 28px;
            font-weight: bold;
            color: #212121;
        }

        @media(max-width:540px){
            .titulo-padrao-plugin-tema-eventos {
                font-size: 18px;
                font-weight: bold;
                color: #212121;
                max-width: 70%;
            }
            .loop-eventos-2-navigation .loop-eventos-2-next {
                right: 24px;
            }
        }


        .loop-eventos-1-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.loop-eventos-1-item-link:hover,
.loop-eventos-1-item-link:focus {
    text-decoration: none;
    color: inherit;
    outline: none;
}

.loop-eventos-1-carousel .owl-item {
    display: flex;
    justify-content: center;
}