 :root {
            --primary-gradient: linear-gradient(135deg, #e91e63 0%, #9c27b0 50%, #673ab7 100%);
            --primary-color: #e91e63;
            --secondary-color: #9c27b0;
            --accent-color: #673ab7;
            --dark-bg: #1a1a2e;
            --light-bg: #f8f9fa;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: #ffffff;
        }

        .gradient-bg {
            background: var(--primary-gradient);
        }
        .gradient-text {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-section {
            background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(156, 39, 176, 0.1) 50%, rgba(103, 58, 183, 0.1) 100%);
            min-height: 70vh;
            display: flex;
            align-items: center;
        }

        .event-image {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .event-image:hover {
            transform: translateY(-5px);
        }

        .ticket-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border: none;
            transition: all 0.3s ease;
            position: sticky;
            top: 100px;
        }

        .ticket-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }

        .ticket-item {
            padding: 20px;
            border-bottom: 1px solid #eee;
            transition: background-color 0.3s ease;
        }

        .ticket-item:last-child {
            border-bottom: none;
        }

        .ticket-item:hover {
            background-color: #f8f9fa;
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .quantity-btn {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .quantity-btn.minus {
            background-color: #e9ecef;
            color: #6c757d;
        }

        .quantity-btn.plus {
            background: var(--primary-gradient);
            color: white;
        }

        .quantity-btn:hover {
            transform: scale(1.1);
        }

        .quantity-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .quantity-display {
            font-weight: 600;
            font-size: 1.1rem;
            min-width: 30px;
            text-align: center;
        }

        .promo-input {
            border: 2px solid #dee2e6;
            border-radius: 10px;
            padding: 12px 15px;
            transition: all 0.3s ease;
        }

        .promo-input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
        }

        .btn-primary-gradient {
            background: var(--primary-gradient);
            border: none;
            border-radius: 12px;
            padding: 12px 30px;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
            color: white;
        }

        .payment-methods {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin-top: 20px;
        }

        .payment-icon {
            width: 60px;
            height: 40px;
            background: white;
            border: 2px solid #dee2e6;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .payment-icon:hover {
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }

        .share-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .share-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: none;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .share-btn:hover {
            transform: scale(1.1);
        }

        .share-btn.facebook { background-color: #3b5998; }
        .share-btn.twitter { background-color: #1da1f2; }
        .share-btn.linkedin { background-color: #0077b5; }
        .share-btn.whatsapp { background-color: #25d366; }

        .section-divider {
            height: 2px;
            background: var(--primary-gradient);
            border: none;
            margin: 60px 0;
        }

        .producer-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
        }

        .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            background: white !important;
        }

        .footer {
            background: var(--dark-bg);
            color: white;
            padding: 40px 0 20px;
        }
        .mobile-ticket-card {
            margin: 20px 15px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .mobile-spaced-image {
            margin: 20px 0;
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: 60vh;
                text-align: center;
                padding-bottom: 20px;
				padding-top:50px;
            }
            
            .ticket-card {
                position: static;
                margin-top: 30px;
            }
            
            .mobile-spaced-image {
                margin: 30px 0;
                border-radius: 10px;
            }
            
            .producer-avatar {
                margin: 20px auto;
            }
            
            .share-section {
                margin-top: 30px;
                padding-top: 20px;
            }
            
            .payment-methods {
                gap: 10px;
            }
            
            .payment-icon {
                width: 50px;
                height: 35px;
            }
            
            .share-buttons {
                gap: 8px;
                margin-top: 15px;
            }
            
            .share-btn {
                width: 40px;
                height: 40px;
            }
            
            .event-image {
                margin-top: 20px;
                margin-bottom: 20px;
            }
            
            .badge {
                margin-bottom: 10px;
            }
        }

        @media (max-width: 576px) {
            .hero-section h1 {
                font-size: 2rem;
				
            }
            
            .ticket-item {
                padding: 15px;
            }
            
            .quantity-btn {
                width: 30px;
                height: 30px;
            }
        }