
/* Estilos modernos para página de divulgação */
.hero-section {
    background: linear-gradient(135deg, #1a3d5c 0%, #2c5aa0 50%, #f8aa7a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,195,17,0.1)"/><circle cx="80" cy="80" r="3" fill="rgba(255,195,17,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,195,17,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 77px;
}
.hero-title {
    color: #ffffff !important;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.breadcrumb-modern {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.breadcrumb-modern a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}
.breadcrumb-modern a:hover {
    color: #f8aa7a;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #25d366, #f8aa7a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.cta-btn:hover {
    background: linear-gradient(45deg, #f8aa7a, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: #1a3d5c;
    transform: translateY(-3px);
}



@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .package-price {
        font-size: 2.5rem;
    }
    
    .package-name {
        font-size: 1.3rem;
    }
    
    .card-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .requirements-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}



        .events_content_wrapper {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .events_hero_section {
            margin-bottom: 80px;
        }
        
        .events_hero_carousel {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        
        .hero-swiper {
            height: 70vh;
            min-height: 500px;
            max-height: 700px;
        }
        
        .hero_event_slide {
            position: relative;
            height: 100%;
        }
        
        .hero_event_image {
            position: relative;
            height: 100%;
            overflow: hidden;
        }
        
        .hero_event_image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero_event_overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
            display: flex;
            align-items: center;
            padding: 60px;
        }
        
        .hero_event_content {
            max-width: 600px;
            color: white;
        }
        
        .event_category {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .category_badge {
            background: #f8aa7a;
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .event_date {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            opacity: 0.9;
        }
        
        .hero_event_title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero_event_description {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .hero_event_details {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .event_detail {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
        }
        
        .event_detail i {
            color: #f8aa7a;
        }
        
        .hero_event_actions {
            display: flex;
            gap: 20px;
        }
        
        .btn_event_details,
        .btn_event_ticket {
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn_event_details {
            background: rgba(255,255,255,0.2);
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
        }
        
        .btn_event_details:hover {
            background: white;
            color: #333;
        }
        
        .btn_event_ticket {
            background: #f8aa7a;
            color: white;
        }
        
        .btn_event_ticket:hover {
            background: #c0392b;
            transform: translateY(-2px);
        }
        
        .hero-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.5);
            opacity: 1;
        }
        
        .hero-pagination .swiper-pagination-bullet-active {
            background: #f8aa7a;
        }
        
        .hero-next,
        .hero-prev {
            color: white;
            background: rgba(0,0,0,0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }
        
        .hero-next:hover,
        .hero-prev:hover {
            background: #f8aa7a;
        }
        
        .events_filter_section {
            margin-bottom: 60px;
        }
        
        .events_filter_container {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .filter_header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .filter_header h3 {
            color: #2c3e50;
            font-size: 1.8rem;
            margin: 0;
        }
        
        .filter_header h3 i {
            color: #f8aa7a;
            margin-right: 10px;
        }
        
        .filter_buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .filter_btn {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            padding: 12px 25px;
            border-radius: 25px;
            color: #6c757d;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .filter_btn:hover,
        .filter_btn.active {
            background: #f8aa7a;
            border-color: #f8aa7a;
            color: white;
            transform: translateY(-2px);
        }
        
        .events_grid_section {
            margin-bottom: 80px;
        }
        
        .events_grid_header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .events_grid_header h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .events_grid_header h2 i {
            color: #f8aa7a;
            margin-right: 15px;
        }
        
        .grid_subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
        }
        
        .events_grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .event_card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .event_card:hover {
            transform: translateY(-10px);
        }
        
        .event_card_inner {
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .event_image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }
        
        .event_image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .event_card:hover .event_image img {
            transform: scale(1.1);
        }
        
        .event_overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .event_card:hover .event_overlay {
            opacity: 1;
        }
        
        .event_actions {
            display: flex;
            gap: 15px;
        }
        
        .event_action_btn {
            background: rgba(255,255,255,0.2);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .event_action_btn:hover {
            background: #f8aa7a;
            transform: scale(1.1);
        }
        
        .event_date_badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #f8aa7a;
            color: white;
            padding: 10px;
            border-radius: 10px;
            text-align: center;
            min-width: 60px;
        }
        
        .event_day {
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
        }
        
        .event_month {
            display: block;
            font-size: 0.8rem;
            text-transform: uppercase;
        }
        
        .event_content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .event_meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .event_category {
            background: #f8f9fa;
            color: #f8aa7a;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .event_time {
            color: #7f8c8d;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .event_title {
            color: #2c3e50;
            font-size: 1.3rem;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        
        .event_description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            flex: 1;
        }
        
        .event_details {
            margin-bottom: 20px;
        }
        
        .event_detail_item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-bottom: 8px;
        }
        
        .event_detail_item i {
            color: #f8aa7a;
            width: 15px;
        }
        
        .event_footer {
            display: flex;
            gap: 10px;
        }
        
        .btn_event_info,
        .btn_event_buy {
            flex: 1;
            padding: 10px 15px;
            border-radius: 20px;
            text-decoration: none;
            text-align: center;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        
        .btn_event_info {
            background: #f8f9fa;
            color: #6c757d;
            border: 1px solid #e9ecef;
        }
        
        .btn_event_info:hover {
            background: #e9ecef;
            color: #495057;
        }
        
        .btn_event_buy {
            background: #f8aa7a;
            color: white;
        }
        
        .btn_event_buy:hover {
            background: #c0392b;
        }
        
        .no_events_message {
            text-align: center;
            padding: 80px 20px;
            color: #7f8c8d;
        }
        
        .no_events_message i {
            font-size: 4rem;
            margin-bottom: 20px;
            color: #dee2e6;
        }
        
        .no_events_message h3 {
            margin-bottom: 15px;
            color: #6c757d;
        }
        
        .events_stats_section {
            background: white;
            padding: 60px 0;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .stats_container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        
        .stat_card {
            text-align: center;
            padding: 30px 20px;
        }
        
        .stat_icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f8aa7a, #c0392b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .stat_icon i {
            font-size: 2rem;
            color: white;
        }
        
        .stat_content h3 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 5px;
            font-weight: 700;
        }
        
        .stat_content p {
            color: #7f8c8d;
            font-weight: 500;
        }
        
        @media (max-width: 768px) {
            .hero_event_overlay {
                padding: 30px;
            }
            
            .hero_event_title {
                font-size: 2.5rem;
            }
            
            .hero_event_details {
                flex-direction: column;
                gap: 15px;
            }
            
            .hero_event_actions {
                flex-direction: column;
            }
            
            .filter_buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .filter_btn {
                width: 100%;
                max-width: 200px;
                justify-content: center;
            }
            
            .events_grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .stats_container {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }
        

