@keyframes fadeIn {
            from {opacity: 0; transform: translateY(-20px);}
            to {opacity: 1; transform: translateY(0);}
        }
        
        /* Estilos existentes */
        .highlights-carousel {
            margin-bottom: 30px;
        }
        
        .highlight-item {
            position: relative;
            height: 400px;
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .highlight-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            padding: 20px;
            color: white;
        }
        
        .highlight-league {
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 5px;
            color: #f8f9fa;
        }
        
        .highlight-teams {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .highlight-date {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        
        .highlight-watch {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .highlight-watch:hover {
            background-color: #1a4b8c;
            color: white;
        }
        
        .carousel-control-prev, .carousel-control-next {
            width: 5%;
        }

        /* Novos estilos para o carrossel de incentivos */
        .incentive-section {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .incentive-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #ffcc00, #ff4d4d);
        }

        .incentive-header {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .incentive-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: white;
            text-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .incentive-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 0;
        }

        .incentive-slider {
            position: relative;
            padding: 0 40px;
        }

        .incentive-slider-container {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 20px;
            scrollbar-width: none;
        }

        .incentive-slider-container::-webkit-scrollbar {
            display: none;
        }

        .incentive-card {
            scroll-snap-align: start;
            flex: 0 0 280px;
            background: rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 25px;
            margin-right: 20px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .incentive-card:last-child {
            margin-right: 0;
        }

        .incentive-card:hover {
            transform: translateY(-10px) scale(1.03);
            background: rgba(255,255,255,0.15);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }

        .incentive-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #ffcc00;
            text-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .incentive-name {
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .incentive-price {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: #ffcc00;
            text-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .incentive-btn {
            background: linear-gradient(135deg, #ffcc00, #ffaa00);
            color: #1a1a1a;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
        }

        .incentive-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 204, 0, 0.4);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2;
            transition: all 0.3s;
            border: none;
            color: white;
            font-size: 1.2rem;
        }

        .slider-nav:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-prev {
            left: -10px;
        }

        .slider-next {
            right: -10px;
        }

        .live-interaction {
            background: linear-gradient(135deg, #ff4d4d, #ff1a1a);
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 5px 15px rgba(255, 77, 77, 0.3);
            position: relative;
            overflow: hidden;
            animation: pulse 2s infinite;
        }

        .live-interaction::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #ffcc00, #ffffff);
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.5); }
            70% { box-shadow: 0 0 0 15px rgba(255, 77, 77, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
        }

        .live-interaction-text {
            font-weight: 700;
            margin-right: 15px;
            font-size: 1.2rem;
            flex: 1;
        }

        .live-interaction-btn {
            background-color: white;
            color: #ff4d4d;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.3s;
            white-space: nowrap;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .live-interaction-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        }

        @media (max-width: 768px) {
            .live-interaction {
                flex-direction: column;
                text-align: center;
                padding: 25px 15px;
            }
            
            .live-interaction-text {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .incentive-card {
                flex: 0 0 240px;
            }
            
            .incentive-title {
                font-size: 1.6rem;
            }
            
            .incentive-slider {
                padding: 0 20px;
            }
            
            .slider-nav {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            .slider-prev {
                left: -5px;
            }
            
            .slider-next {
                right: -5px;
            }
        }

        @media (max-width: 480px) {
            .incentive-section {
                padding: 25px 15px;
            }
            
            .incentive-card {
                flex: 0 0 220px;
                padding: 20px;
            }
            
            .incentive-title {
                font-size: 1.4rem;
            }
            
            .incentive-subtitle {
                font-size: 1rem;
            }
            
            .live-interaction-text {
                font-size: 1rem;
            }
            
            .live-interaction-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
        
        /* ===== MEDIA QUERIES PARA TELAS PEQUENAS (400px ou menos) ===== */
@media (max-width: 400px) {
    /* Ajustes no carrossel de destaques */
    .highlight-item {
        height: 300px;
    }
    
    .highlight-content {
        padding: 15px;
    }
    
    .highlight-teams {
        font-size: 1.4rem;
    }
    
    .highlight-date {
        font-size: 1rem;
    }
    
    .highlight-watch {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    
    /* Ajustes no carrossel de incentivos */
    .incentive-section {
        padding: 20px 10px;
        margin: 20px 0;
    }
    
    .incentive-title {
        font-size: 1.3rem;
    }
    
    .incentive-subtitle {
        font-size: 0.9rem;
    }
    
    .incentive-card {
        flex: 0 0 200px;
        padding: 20px 15px;
        margin-right: 15px;
    }
    
    .incentive-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .incentive-name {
        font-size: 1rem;
    }
    
    .incentive-price {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .incentive-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    /* Ajustes na interação ao vivo */
    .live-interaction {
        padding: 15px;
        margin: 20px 0;
    }
    
    .live-interaction-text {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .live-interaction-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* ===== MEDIA QUERIES PARA TELAS MUITO PEQUENAS (320px ou menos) ===== */
@media (max-width: 320px) {
    /* Ajustes adicionais para layouts muito compactos */
    .highlight-item {
        height: 250px;
    }
    
    .highlight-teams {
        font-size: 1.2rem;
    }
    
    .highlight-date {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    /* Carrossel de incentivos */
    .incentive-card {
        flex: 0 0 180px;
        padding: 15px 10px;
    }
    
    .incentive-icon {
        font-size: 1.8rem;
    }
    
    .incentive-name {
        font-size: 0.9rem;
    }
    
    .incentive-price {
        font-size: 1.1rem;
    }
    
    /* Interação ao vivo */
    .live-interaction-text {
        font-size: 0.9rem;
    }
}

/* ===== AJUSTES PARA LANDSCAPE EM MOBILE ===== */
@media (max-height: 480px) and (orientation: landscape) {
    .highlight-item {
        height: 300px;
    }
    
    .incentive-section {
        padding: 15px;
    }
    
    .incentive-slider-container {
        padding-bottom: 10px;
    }
    
    .incentive-card {
        padding: 15px;
    }
    
    .live-interaction {
        padding: 15px;
    }
}

/* ===== AJUSTES PARA TELAS PEQUENAS EM MODO PAISAGEM ===== */
@media (max-width: 640px) and (orientation: landscape) {
    .highlight-item {
        height: 350px;
    }
    
    .incentive-card {
        flex: 0 0 220px;
    }
