:root {
            --primary: #0053a0;
            --secondary: #e6ac00;
            --light: #f1f7fd;
            --dark: #333;
            --gray: #555;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #555;
            margin: 0;
            padding: 0;
            background-color: #f8f9fa;
        }
        
        .ticketing-section {
            padding: 80px 0;
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .ticketing-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: var(--secondary);
            opacity: 0.1;
            border-radius: 50%;
            z-index: 0;
        }
        
        .ticketing-section::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: var(--primary);
            opacity: 0.1;
            border-radius: 50%;
            z-index: 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        .section-title {
            color: var(--primary);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            text-align: center;
            font-size: 2.5rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        .section-subtitle {
            text-align: center;
            margin-bottom: 50px;
            font-size: 1.2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            color: var(--gray);
        }
        
        .sub-title {
            color: var(--primary);
            margin: 25px 0 15px;
            display: flex;
            align-items: center;
        }
        
        .sub-title i {
            margin-right: 12px;
            color: var(--secondary);
        }
        
        .btn-mahs {
            display: inline-flex;
            align-items: center;
            background: var(--primary);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 15px;
            box-shadow: 0 4px 15px rgba(0, 83, 160, 0.3);
            border: none;
            cursor: pointer;
        }
        
        .btn-mahs:hover {
            background: #003d70;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 83, 160, 0.4);
            color: white;
        }
        
        .btn-mahs i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .btn-mahs:hover i {
            transform: translateX(4px);
        }
        
        .content-box {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .content-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        .col-12, .col-lg-6, .col-md-6, .col-lg-4, .col-md-4 {
            padding: 0 15px;
            box-sizing: border-box;
        }
        
        .col-12 { width: 100%; }
        .col-lg-6 { width: 50%; }
        .col-md-6 { width: 50%; }
        .col-lg-4 { width: 33.3333%; }
        .col-md-4 { width: 33.3333%; }
        
        .mb-4 { margin-bottom: 1.5rem; }
        .mb-5 { margin-bottom: 3rem; }
        
        .text-center { text-align: center; }
        
        .align-items-center { align-items: center; }
        
        .h-100 { height: 100%; }
        
        .img-fluid { max-width: 100%; height: auto; }
        
        /* Estilos específicos para a seção de ticketing */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-align: center;
            padding: 30px 20px;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary);
            font-size: 2rem;
        }
        
        .service-title {
            color: var(--primary);
            margin: 0 0 15px;
            font-size: 1.4rem;
        }
        
        .service-description {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .partnership-section {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin: 40px 0;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .partnership-logo {
            flex: 0 0 200px;
            text-align: center;
            margin-right: 30px;
        }
        
        .partnership-content {
            flex: 1;
            min-width: 300px;
        }
        
        .partnership-title {
            color: var(--primary);
            margin: 0 0 15px;
        }
        
        .ticketing-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            transition: all 0.5s ease;
        }
        
        .ticketing-image:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }
        
        .ticketing-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .ticketing-image::before {
            content: '';
            position: absolute;
            top: -15px;
            right: -15px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--secondary);
            border-radius: 12px;
            z-index: -1;
            opacity: 0.5;
        }
        
        .benefits-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .benefits-list li {
            margin-bottom: 12px;
            padding: 12px 15px 12px 45px;
            position: relative;
            color: var(--dark);
            background: rgba(255, 255, 255, 0.8);
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .benefits-list li:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .benefits-list li::before {
            content: '✓';
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 26px;
            height: 26px;
            background: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        .stat-item {
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
            margin-bottom: 20px;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }
        
        .stat-label {
            color: var(--gray);
            font-size: 1rem;
        }
        
        .contact-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .contact-option {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .contact-option:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .contact-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* Responsividade */
        @media (max-width: 992px) {
            .col-lg-6, .col-md-6, .col-lg-4, .col-md-4 {
                width: 100%;
                margin-bottom: 20px;
            }
            
            .partnership-section {
                flex-direction: column;
                text-align: center;
            }
            
            .partnership-logo {
                margin-right: 0;
                margin-bottom: 20px;
                flex: 0 0 auto;
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-options {
                grid-template-columns: 1fr;
            }
        }