

        :root {

            --primary-color: #4361ee;

            --secondary-color: #3f37c9;

            --accent-color: #4cc9f0;

            --light-color: #f8f9fa;

            --dark-color: #212529;

            --success-color: #28a745;

            --info-color: #17a2b8;

            --warning-color: #ffc107;

            --danger-color: #dc3545;

            --pagseguro-color: #0c9a48;

            --mercadopago-color: #009ee3;

        }

        body {

            background-color: #f5f7fa;

            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

            color: #333;

        }

        .hero-banner {

            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://s3.sa-east-1.amazonaws.com/static.activodeporte.com/brasil/uploads/2024/06/17114424/DSC-0415-1.jpg?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');

            background-size: cover;

            background-position: center;

            color: white;

            padding: 5rem 0;

            margin-bottom: 3rem;

            text-align: center;

        }

        .event-header {

            background-color: white;

            border-radius: 12px;

            box-shadow: 0 10px 30px rgba(0,0,0,0.1);

            padding: 2rem;

            margin-bottom: 2rem;

            position: relative;

            overflow: hidden;

        }

        .event-header::before {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            width: 6px;

            height: 100%;

            background: var(--primary-color);

        }

        .image-container {

            height: 400px;

            overflow: hidden;

            position: relative;

            width: 100%;

            border-radius: 12px;

        }

        .image-container img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            object-position: top;

            transition: all 0.5s ease;

        }

        .image-container img:hover {

            object-position: center;

        }

        @media (max-width: 992px) {

            .image-container {

                height: 350px;

            }

        }

        @media (max-width: 768px) {

            .image-container {

                height: 300px;

            }

        }

        @media (max-width: 576px) {

            .image-container {

                height: 250px;

            }

        }

        .event-image {

            border-radius: 12px;

            overflow: hidden;

            box-shadow: 0 10px 20px rgba(0,0,0,0.1);

            margin-bottom: 2rem;

        }

        .form-container {

            background: white;

            border-radius: 12px;

            box-shadow: 0 10px 30px rgba(0,0,0,0.1);

            padding: 2.5rem;

            margin-bottom: 3rem;

        }

        .section-title {

            position: relative;

            padding-bottom: 1rem;

            margin-bottom: 2rem;

            font-weight: 700;

            color: var(--primary-color);

        }

        .section-title::after {

            content: '';

            position: absolute;

            bottom: 0;

            left: 0;

            width: 60px;

            height: 4px;

            background: var(--accent-color);

            border-radius: 2px;

        }

        .info-card {

            background: white;

            border-radius: 12px;

            box-shadow: 0 5px 15px rgba(0,0,0,0.05);

            padding: 1.5rem;

            margin-bottom: 1.5rem;

            transition: transform 0.3s, box-shadow 0.3s;

            height: 100%;

        }

        .info-card:hover {

            transform: translateY(-5px);

            box-shadow: 0 10px 25px rgba(0,0,0,0.1);

        }

        .info-card .icon {

            width: 60px;

            height: 60px;

            border-radius: 50%;

            background: rgba(67, 97, 238, 0.1);

            display: flex;

            align-items: center;

            justify-content: center;

            margin-bottom: 1rem;

            font-size: 1.5rem;

            color: var(--primary-color);

        }

        .step-indicator {

            display: flex;

            justify-content: center;

            margin-bottom: 3rem;

            position: relative;

        }

        .step-indicator::before {

            content: '';

            position: absolute;

            top: 20px;

            left: 0;

            right: 0;

            height: 3px;

            background: #e9ecef;

            z-index: 1;

        }

        .step {

            position: relative;

            z-index: 2;

            display: flex;

            flex-direction: column;

            align-items: center;

            padding: 0 20px;

        }

        .step-number {

            width: 40px;

            height: 40px;

            border-radius: 50%;

            background: #e9ecef;

            display: flex;

            align-items: center;

            justify-content: center;

            font-weight: 700;

            margin-bottom: 10px;

            transition: all 0.3s;

        }

        .step.active .step-number {

            background: var(--primary-color);

            color: white;

            transform: scale(1.1);

        }

        .step-label {

            font-size: 0.9rem;

            text-align: center;

            font-weight: 500;

        }

        .form-section {

            display: none;

            animation: fadeIn 0.5s ease-in-out;

        }

        .form-section.active {

            display: block;

        }

        @keyframes fadeIn {

            from { opacity: 0; transform: translateY(20px); }

            to { opacity: 1; transform: translateY(0); }

        }

        .form-group {

            margin-bottom: 1.5rem;

        }

        .form-label {

            font-weight: 600;

            margin-bottom: 0.5rem;

            color: #495057;

        }

        .input-icon {

            position: relative;

        }

        .input-icon .icon {

            position: absolute;

            left: 15px;

            top: 50%;

            transform: translateY(-50%);

            color: #6c757d;

            z-index: 2;

        }

        .input-icon input,

        .input-icon select,

        .input-icon textarea {

            padding-left: 45px;

        }

        .payment-methods {

            display: flex;

            flex-direction: column;

            gap: 15px;

            margin-top: 1rem;

        }

        .payment-method {

            border: 2px solid #e9ecef;

            border-radius: 8px;

            padding: 1rem;

            cursor: pointer;

            transition: all 0.3s;

            display: flex;

            align-items: center;

        }

        .payment-method:hover, .payment-method.active {

            border-color: var(--primary-color);

            background: rgba(67, 97, 238, 0.05);

        }

        .payment-method .icon {

            font-size: 2rem;

            margin-right: 15px;

            width: 50px;

            text-align: center;

        }

        .payment-method.pagseguro.active {

            border-color: var(--pagseguro-color);

            background: rgba(12, 154, 72, 0.1);

        }

        .payment-method.mercadopago.active {

            border-color: var(--mercadopago-color);

            background: rgba(0, 158, 227, 0.1);

        }

        .payment-method.pagseguro .icon {

            color: var(--pagseguro-color);

        }

        .payment-method.mercadopago .icon {

            color: var(--mercadopago-color);

        }

        .file-upload {

            border: 2px dashed #dee2e6;

            border-radius: 8px;

            padding: 2rem;

            text-align: center;

            cursor: pointer;

            transition: all 0.3s;

            position: relative;

            overflow: hidden;

        }

        .file-upload-area {

            pointer-events: none;

        }

        .file-upload:hover {

            border-color: #4361ee;

            background-color: rgba(67, 97, 238, 0.05);

        }

        .file-upload-input {

            position: absolute;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            opacity: 0;

            cursor: pointer;

            z-index: 2;

        }

        .btn-primary {

            background: var(--primary-color);

            border: none;

            padding: 12px 25px;

            font-weight: 600;

            transition: all 0.3s;

        }

        .btn-primary:hover {

            background: var(--secondary-color);

            transform: translateY(-2px);

            box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);

        }

        .btn-outline-secondary {

            padding: 12px 25px;

            font-weight: 600;

        }

        .terms-box {

            border: 1px solid #e9ecef;

            border-radius: 8px;

            padding: 1.5rem;

            max-height: 200px;

            overflow-y: auto;

            margin-bottom: 1.5rem;

        }

        .share-section {

            background: rgba(67, 97, 238, 0.05);

            border-radius: 12px;

            padding: 1.5rem;

            text-align: center;

            margin-top: 2rem;

        }

        .share-buttons {

            display: flex;

            gap: 10px;

            justify-content: center;

            margin-top: 1rem;

        }

        .share-btn {

            width: 40px;

            height: 40px;

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

            color: white;

            font-size: 1.2rem;

            transition: transform 0.3s;

        }

        .share-btn:hover {

            transform: translateY(-3px);

        }

        .whatsapp {

            background-color: #25D366;

        }

        .facebook {

            background-color: #3b5998;

        }

        .twitter {

            background-color: #1DA1F2;

        }

        .link {

            background-color: #6c757d;

        }

        .contact-card {

            background: white;

            border-radius: 12px;

            box-shadow: 0 5px 15px rgba(0,0,0,0.05);

            padding: 1.5rem;

            text-align: center;

            margin-top: 2rem;

        }

        .contact-card .icon {

            font-size: 2rem;

            color: var(--primary-color);

            margin-bottom: 1rem;

        }

        .progress-bar {

            transition: width 0.5s ease-in-out;

        }

        .info-sidebar {

            position: sticky;

            top: 20px;

        }

        .valor-total {

            font-size: 1.5rem;

            font-weight: bold;

            color: #28a745;

        }

        .info-card-grid {

            display: grid;

            grid-template-columns: 1fr;

            gap: 1.5rem;

        }

        .valor-box {

            background-color: #f8f9fa;

            border-radius: 8px;

            padding: 15px;

            margin-bottom: 20px;

        }

        .valor-item {

            display: flex;

            justify-content: space-between;

            padding: 8px 0;

            border-bottom: 1px solid #e9ecef;

        }

        .valor-item:last-child {

            border-bottom: none;

            font-weight: bold;

            font-size: 1.1rem;

        }

        .no-payment {

            background-color: #fff8e1;

            border-left: 4px solid #ffc107;

            padding: 15px;

            margin: 20px 0;

        }

        .toast {

            position: fixed;

            bottom: 20px;

            right: 20px;

            z-index: 10000;

        }

        .modal-content {

            border-radius: 12px;

            box-shadow: 0 5px 30px rgba(0,0,0,0.3);

        }

        .terms-modal {

            max-height: 70vh;

            overflow-y: auto;

        }

        .terms-title {

            border-bottom: 2px solid #4361ee;

            padding-bottom: 10px;

            margin-bottom: 20px;

        }

        .patrocinadores-container {

            background: white;

            border-radius: 12px;

            box-shadow: 0 5px 15px rgba(0,0,0,0.05);

            padding: 1.5rem;

            margin-top: 2rem;

            margin-bottom: 2rem;

        }

        .patrocinadores-grid {

            display: grid;

            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));

            gap: 15px;

            justify-items: center;

            align-items: center;

        }

        .patrocinador-item {

            width: 100%;

            height: 100px;

            display: flex;

            align-items: center;

            justify-content: center;

            background: #f8f9fa;

            border-radius: 8px;

            overflow: hidden;

            transition: all 0.3s ease;

            padding: 10px;

            box-sizing: border-box;

        }

        .patrocinador-item:hover {

            transform: scale(1.05);

            box-shadow: 0 5px 15px rgba(0,0,0,0.1);

        }

        .patrocinador-item img {

            max-width: 100%;

            max-height: 100%;

            object-fit: contain;

        }

        @media (max-width: 768px) {

            .patrocinadores-grid {

                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));

            }

            .patrocinador-item {

                height: 80px;

            }

        }


