        :root {
            --mdr-blue: #0A1628;
            --mdr-blue-light: #1E3A5F;
            --mdr-orange: #FF6B35;
            --mdr-orange-dark: #E85A2A;
            --mdr-white: #FFFFFF;
            --mdr-gray: #F5F5F5;
            --mdr-text: #333333;
            --mdr-text-light: #666666;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            overflow-x: hidden;
            background: var(--mdr-blue);
            color: var(--mdr-white);
        }

        /* Tipografia Maratona do Rio */
        .display-title {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(3rem, 10vw, 7rem);
            line-height: 0.95;
            letter-spacing: -0.02em;
            font-weight: 700;
            text-transform: uppercase;
        }

        .section-title {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2rem, 6vw, 4rem);
            line-height: 1;
            letter-spacing: -0.01em;
            font-weight: 600;
            text-transform: uppercase;
        }

        /* Header Fixo - Estilo MDR */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--mdr-blue);
            z-index: 1000;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo-header {
            height: 50px;
            filter: brightness(0) invert(1);
        }

        .nav-menu {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--mdr-white);
            font-weight: 600;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: color 0.3s ease;
            opacity: 0.9;
        }

        .nav-menu a:hover {
            color: var(--mdr-orange);
            opacity: 1;
        }

        /* Hero Section - Estilo Maratona do Rio */
        .hero-section {
            margin-top: 70px;
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0A1628 0%, #1E3A5F 50%, #0A1628 100%);
            overflow: hidden;
        }
        
        .hero-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
            z-index: 0;
        }
        
        .hero-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10,22,40,0.8) 0%, rgba(30,58,95,0.6) 50%, rgba(10,22,40,0.9) 100%);
            z-index: 1;
        }
        
        .hero-geometric-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .hero-geometric-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(ellipse at 30% 20%, rgba(30, 58, 95, 0.8) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 40%),
                radial-gradient(ellipse at 50% 50%, rgba(30, 58, 95, 0.5) 0%, transparent 60%);
            animation: heroFloat 20s ease-in-out infinite;
        }
        
        @keyframes heroFloat {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-2%, -2%) rotate(1deg); }
        }
        
        .hero-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
        }
        
        .hero-shape {
            position: absolute;
            background: linear-gradient(135deg, var(--mdr-orange) 0%, var(--mdr-orange-dark) 100%);
            opacity: 0.1;
        }
        
        .hero-shape-1 {
            width: 600px;
            height: 600px;
            border-radius: 50%;
            top: -200px;
            right: -200px;
            animation: shapeFloat1 15s ease-in-out infinite;
        }
        
        .hero-shape-2 {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            bottom: -100px;
            left: -100px;
            animation: shapeFloat2 18s ease-in-out infinite;
        }
        
        .hero-shape-3 {
            width: 200px;
            height: 200px;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            top: 50%;
            left: 30%;
            animation: shapeFloat3 12s ease-in-out infinite;
        }
        
        @keyframes shapeFloat1 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-30px, 30px) scale(1.05); }
        }
        
        @keyframes shapeFloat2 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(20px, -20px) scale(1.03); }
        }
        
        @keyframes shapeFloat3 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-15px, 15px) rotate(45deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 2rem;
            text-align: center;
            max-width: 1200px;
        }

        .hero-promo-badge {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: var(--mdr-orange);
            color: var(--mdr-white);
            padding: 0.75rem 2rem;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.05em;
            margin-bottom: 2rem;
            border-radius: 50px;
            text-transform: uppercase;
            box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
            animation: pulseBadge 2s ease-in-out infinite;
        }
        
        @keyframes pulseBadge {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        .hero-title {
            color: var(--mdr-white);
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 30px rgba(0,0,0,0.3);
        }
        
        .hero-subtitle {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            color: var(--mdr-orange);
            margin-bottom: 1rem;
            text-transform: uppercase;
            font-weight: 500;
        }
        
        .hero-description {
            font-size: 1.25rem;
            color: rgba(255,255,255,0.9);
            max-width: 600px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }

        .hero-event-info {
            display: inline-flex;
            align-items: center;
            gap: 2rem;
            padding: 1.5rem 3rem;
            margin-top: 2rem;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(20px);
            border-radius: 100px;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .hero-event-info .info-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--mdr-white);
        }
        
        .hero-event-info .info-item i {
            color: var(--mdr-orange);
            font-size: 1.5rem;
        }
        
        .hero-event-info .info-item strong {
            font-weight: 700;
            font-size: 1rem;
        }
        
        .hero-divider {
            width: 1px;
            height: 40px;
            background: rgba(255,255,255,0.3);
        }

        /* Seções */
        .section-dark {
            background: var(--mdr-blue);
            padding: 5rem 0;
        }

        .section-light {
            background: var(--mdr-white);
            color: var(--mdr-text);
            padding: 5rem 0;
        }

        .container-custom {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Cards de Provas/Distâncias */
        .races-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .race-card {
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.8) 0%, rgba(10, 22, 40, 0.9) 100%);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255,255,255,0.1);
            position: relative;
        }

        .race-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            border-color: var(--mdr-orange);
        }
        
        .race-card-header {
            padding: 2rem;
            position: relative;
            overflow: hidden;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        
        .race-card-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(10,22,40,0.3) 0%, rgba(10,22,40,0.95) 100%);
            z-index: 1;
        }
        
        .race-card-header > * {
            position: relative;
            z-index: 2;
        }
        
        .race-card-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .race-card:hover .race-card-image {
            transform: scale(1.1);
        }
        
        .race-distance {
            font-family: 'Oswald', sans-serif;
            font-size: 5rem;
            font-weight: 700;
            color: var(--mdr-orange);
            line-height: 1;
            margin-bottom: 0.5rem;
            text-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }
        
        .race-name {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--mdr-white);
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }
        
        .race-date {
            font-size: 0.875rem;
            color: rgba(255,255,255,0.7);
        }
        
        .race-card-body {
            padding: 0 2rem 2rem;
        }
        
        .race-price {
            font-family: 'Oswald', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--mdr-white);
            margin-bottom: 1rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }
        
        .race-price-value {
            font-size: 3.5rem;
            color: var(--mdr-orange);
            font-weight: 700;
        }
        
        .race-price small {
            font-size: 1rem;
            opacity: 0.7;
            display: block;
            margin-top: 0.5rem;
            font-family: 'Open Sans', sans-serif;
            font-weight: 400;
            letter-spacing: 0;
        }
        
        .race-features {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem;
        }
        
        .race-features li {
            padding: 0.75rem 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.875rem;
            color: rgba(255,255,255,0.8);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .race-features li i {
            color: var(--mdr-orange);
            width: 20px;
        }
        
        .race-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1rem;
            padding: 1rem;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
        }
        
        .qty-btn {
            width: 44px;
            height: 44px;
            border: 2px solid var(--mdr-orange);
            background: transparent;
            border-radius: 8px;
            font-size: 1.5rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            color: var(--mdr-orange);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .qty-btn:hover {
            background: var(--mdr-orange);
            color: var(--mdr-white);
        }

        .qty-value {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            min-width: 60px;
            text-align: center;
            color: var(--mdr-white);
        }
        
        .btn-add-race {
            width: 100%;
            padding: 1.25rem;
            background: var(--mdr-orange);
            color: var(--mdr-white);
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 0.938rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-add-race::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-add-race:hover {
            background: var(--mdr-orange-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        }
        
        .btn-add-race:hover::before {
            left: 100%;
        }
        
        /* Label de Status */
        .race-status-label {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.5rem 1rem;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border-radius: 20px;
            z-index: 5;
        }
        
        .race-status-label.disponivel {
            background: #10B981;
            color: white;
        }
        
        .race-status-label.ultimas {
            background: var(--mdr-orange);
            color: white;
            animation: pulse 2s infinite;
        }
        
        .race-status-label.esgotado {
            background: #EF4444;
            color: white;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Stats Strip */
        .stats-strip {
            background: linear-gradient(135deg, var(--mdr-orange) 0%, var(--mdr-orange-dark) 100%);
            padding: 4rem 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat-item h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 4rem;
            font-weight: 700;
            color: var(--mdr-white);
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 1rem;
            color: rgba(255,255,255,0.9);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
        }

        /* Footer */
        footer {
            background: #050A12;
            color: var(--mdr-white);
            padding: 4rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        footer h5 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--mdr-orange);
        }

        footer a {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin-bottom: 0.75rem;
            font-size: 0.875rem;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: var(--mdr-orange);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 0.875rem;
        }
        
        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: var(--mdr-orange);
            transform: translateY(-3px);
        }

        /* Floating Cart */
        .cart-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: var(--mdr-orange);
            color: var(--mdr-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
            transition: all 0.3s ease;
            z-index: 999;
            font-size: 1.25rem;
        }

        .cart-float:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
        }

        .cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--mdr-blue);
            color: var(--mdr-white);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.875rem;
            font-weight: 700;
            border: 3px solid var(--mdr-white);
        }

        /* Cart Sidebar */
        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(5px);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .cart-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -450px;
            width: 450px;
            max-width: 100%;
            height: 100%;
            background: var(--mdr-white);
            z-index: 9999;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }
        
        .cart-sidebar.open {
            right: 0;
        }
        
        .cart-header {
            padding: 1.5rem 2rem;
            background: var(--mdr-blue);
            color: var(--mdr-white);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .cart-header h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            margin: 0;
            text-transform: uppercase;
        }
        
        .cart-close {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border: none;
            border-radius: 50%;
            color: var(--mdr-white);
            font-size: 1.25rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .cart-close:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .cart-body {
            flex: 1;
            overflow-y: auto;
            padding: 2rem;
        }
        
        .cart-empty {
            text-align: center;
            padding: 4rem 2rem;
            color: var(--mdr-text-light);
        }
        
        .cart-empty i {
            font-size: 4rem;
            opacity: 0.3;
            margin-bottom: 1rem;
        }
        
        .cart-item {
            display: flex;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--mdr-gray);
            border-radius: 12px;
            margin-bottom: 1rem;
        }
        
        .cart-item-info h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.25rem;
            color: var(--mdr-blue);
            margin-bottom: 0.25rem;
        }
        
        .cart-item-info p {
            font-size: 0.875rem;
            color: var(--mdr-text-light);
            margin-bottom: 0.5rem;
        }
        
        .cart-item-price {
            font-weight: 700;
            color: var(--mdr-orange);
        }
        
        .cart-item-remove {
            background: none;
            border: none;
            color: #EF4444;
            cursor: pointer;
            padding: 0.5rem;
            transition: transform 0.2s ease;
        }
        
        .cart-item-remove:hover {
            transform: scale(1.1);
        }
        
        .cart-footer {
            padding: 2rem;
            background: var(--mdr-gray);
            border-top: 1px solid #E5E7EB;
        }
        
        .cart-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .cart-total-label {
            font-weight: 600;
            color: var(--mdr-text);
        }
        
        .cart-total-value {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--mdr-orange);
        }
        
        .btn-checkout {
            width: 100%;
            padding: 1.25rem;
            background: var(--mdr-orange);
            color: var(--mdr-white);
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-checkout:hover {
            background: var(--mdr-orange-dark);
            transform: translateY(-2px);
        }
        
        .btn-checkout:disabled {
            background: #9CA3AF;
            cursor: not-allowed;
            transform: none;
        }

        /* Modal de Checkout */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(10px);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }
        
        .modal-overlay.show {
            display: flex;
        }
        
        .modal-content {
            background: var(--mdr-white);
            width: 100%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            border-radius: 20px;
            position: relative;
        }
        
        .modal-header {
            padding: 2rem;
            background: var(--mdr-blue);
            color: var(--mdr-white);
            border-radius: 20px 20px 0 0;
        }
        
        .modal-header h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.75rem;
            margin: 0;
            text-transform: uppercase;
        }
        
        .modal-header p {
            margin: 0.5rem 0 0;
            opacity: 0.8;
            font-size: 0.875rem;
        }
        
        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border: none;
            border-radius: 50%;
            color: var(--mdr-white);
            font-size: 1.25rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .modal-close:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .modal-body {
            padding: 2rem;
        }
        
        .checkout-step {
            display: none;
        }
        
        .checkout-step.active {
            display: block;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--mdr-text);
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
        }
        
        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 2px solid #E5E7EB;
            border-radius: 10px;
            font-size: 1rem;
            background: #ffffff;
            color: #111827;
            transition: border-color 0.3s ease;
        }
        .form-group input::placeholder {
            color: #9CA3AF;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: var(--mdr-orange);
        }
        
        .form-group input:disabled {
            background: var(--mdr-gray);
            color: var(--mdr-text);
        }
        
        .customer-data-card {
            background: linear-gradient(135deg, var(--mdr-blue) 0%, var(--mdr-blue-light) 100%);
            padding: 1.5rem;
            border-radius: 12px;
            color: var(--mdr-white);
            margin-bottom: 1.5rem;
        }
        
        .customer-data-card h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.25rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }
        
        .customer-data-card p {
            margin: 0.5rem 0;
            font-size: 0.938rem;
            opacity: 0.9;
        }
        
        .customer-data-card strong {
            color: var(--mdr-orange);
        }
        
        /* Order Bump */
        .order-bump-section {
            background: linear-gradient(135deg, #FFF8F5 0%, #FFF0EB 100%);
            border: 2px solid var(--mdr-orange);
            border-radius: 16px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            position: relative;
        }
        .order-bump-header {
            text-align: center;
            margin-bottom: 1.25rem;
        }
        .order-bump-badge {
            display: inline-block;
            background: var(--mdr-orange);
            color: white;
            padding: 0.35rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }
        .order-bump-header h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.25rem;
            color: var(--mdr-blue);
            margin: 0 0 0.25rem;
            text-transform: uppercase;
        }
        .order-bump-header p {
            font-size: 0.875rem;
            color: var(--mdr-text-light);
            margin: 0;
        }
        .order-bump-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        @media (max-width: 520px) {
            .order-bump-grid { grid-template-columns: 1fr; }
        }
        .order-bump-card {
            cursor: pointer;
            display: block;
            margin: 0;
        }
        .order-bump-card input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }
        .order-bump-card-inner {
            background: white;
            border: 2px solid #E5E7EB;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .order-bump-card:hover .order-bump-card-inner {
            border-color: var(--mdr-orange);
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
        }
        .order-bump-card input:checked + .order-bump-card-inner {
            border-color: var(--mdr-orange);
            background: linear-gradient(180deg, #FFF8F5 0%, white 100%);
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
        }
        .order-bump-card input:checked + .order-bump-card-inner .order-bump-cta {
            color: var(--mdr-orange);
            font-weight: 700;
        }
        .order-bump-card input:checked + .order-bump-card-inner .order-bump-cta::before {
            content: '✓ ';
        }
        .order-bump-image {
            height: 200px;
            min-height: 200px;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }
        .order-bump-image img {
            max-height: 180px;
            max-width: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
        }
        .order-bump-info {
            padding: 1rem;
            flex: 1;
        }
        .order-bump-brand {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--mdr-orange);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }
        .order-bump-info h5 {
            font-family: 'Oswald', sans-serif;
            font-size: 1rem;
            color: var(--mdr-blue);
            margin: 0.25rem 0 0.25rem;
            line-height: 1.2;
        }
        .order-bump-desc {
            font-size: 0.75rem;
            color: var(--mdr-text-light);
            margin: 0 0 0.5rem;
        }
        .order-bump-price {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--mdr-orange);
            display: block;
        }
        .order-bump-cta {
            font-size: 0.8rem;
            color: var(--mdr-text-light);
            margin-top: 0.25rem;
            display: block;
            transition: color 0.2s ease;
        }
        .order-bump-size {
            margin: 0.5rem 0;
        }
        .order-bump-size label {
            display: block;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--mdr-text);
            margin-bottom: 0.25rem;
        }
        .order-bump-size select {
            width: 100%;
            padding: 0.5rem;
            border: 2px solid #E5E7EB;
            border-radius: 8px;
            font-size: 0.875rem;
            background: #ffffff;
            color: #111827;
            cursor: pointer;
        }
        .order-bump-size select option {
            color: #111827;
            background: #ffffff;
        }
        .order-bump-size select:focus {
            outline: none;
            border-color: var(--mdr-orange);
        }
        .order-bump-subsection {
            margin-top: 1.25rem;
            padding-top: 1.25rem;
            border-top: 1px dashed rgba(255, 107, 53, 0.3);
        }
        .order-bump-subsection-title {
            font-family: 'Oswald', sans-serif;
            font-size: 0.9rem;
            color: var(--mdr-blue);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .order-bump-subsection-title i {
            color: var(--mdr-orange);
        }
        .order-bump-service-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }
        @media (max-width: 520px) {
            .order-bump-service-grid { grid-template-columns: 1fr; }
        }
        .order-bump-service-card {
            cursor: pointer;
            display: block;
            margin: 0;
        }
        .order-bump-service-card input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }
        .order-bump-service-inner {
            background: white;
            border: 2px solid #E5E7EB;
            border-radius: 12px;
            padding: 1rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            transition: all 0.2s ease;
        }
        .order-bump-service-card:hover .order-bump-service-inner {
            border-color: var(--mdr-orange);
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
        }
        .order-bump-service-card input:checked + .order-bump-service-inner {
            border-color: var(--mdr-orange);
            background: linear-gradient(180deg, #FFF8F5 0%, white 100%);
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
        }
        .order-bump-service-card input:checked + .order-bump-service-inner .order-bump-cta {
            color: var(--mdr-orange);
            font-weight: 700;
        }
        .order-bump-service-card input:checked + .order-bump-service-inner .order-bump-cta::before {
            content: '✓ ';
        }
        .order-bump-service-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 10px;
            background: linear-gradient(135deg, #FFF0EB 0%, #FFE0D5 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--mdr-orange);
        }
        .order-bump-service-info {
            flex: 1;
            min-width: 0;
        }
        .order-bump-service-info h5 {
            font-family: 'Oswald', sans-serif;
            font-size: 0.9rem;
            color: var(--mdr-blue);
            margin: 0 0 0.15rem;
            line-height: 1.2;
        }
        .order-bump-service-info .order-bump-desc {
            font-size: 0.7rem;
            color: var(--mdr-text-light);
            margin: 0 0 0.35rem;
        }
        .order-bump-service-info .order-bump-price {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--mdr-orange);
        }
        .order-bump-service-info .order-bump-price-from {
            font-size: 0.65rem;
            color: var(--mdr-text-light);
            font-weight: 400;
        }
        .order-bump-service-info .order-bump-cta {
            font-size: 0.75rem;
            color: var(--mdr-text-light);
            margin-top: 0.15rem;
            display: block;
            transition: color 0.2s ease;
        }
        
        /* Participantes Adicionais */
        .additional-participant {
            background: var(--mdr-gray);
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 1rem;
            border: 1px solid #E5E7EB;
        }
        
        .additional-participant-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.75rem;
        }
        
        .additional-participant-header h5 {
            font-family: 'Oswald', sans-serif;
            font-size: 1rem;
            color: var(--mdr-blue);
            margin: 0;
        }
        
        .additional-participant .form-group {
            margin-bottom: 0.75rem;
        }
        
        .additional-participant .form-group:last-child {
            margin-bottom: 0;
        }
        
        .btn-consultar-cpf-adicional {
            background: var(--mdr-blue);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.813rem;
            font-weight: 600;
            transition: all 0.2s ease;
        }
        
        .btn-consultar-cpf-adicional:hover {
            background: var(--mdr-blue-light);
        }
        
        .btn-consultar-cpf-adicional:disabled {
            background: #9CA3AF;
            cursor: not-allowed;
        }
        
        .participant-data-confirmed {
            background: linear-gradient(135deg, #059669 0%, #10B981 100%);
            padding: 0.75rem;
            border-radius: 8px;
            color: white;
            font-size: 0.813rem;
        }
        
        .participant-data-confirmed p {
            margin: 0.25rem 0;
        }
        
        .participant-data-confirmed strong {
            color: rgba(255,255,255,0.9);
        }
        
        /* Payment Methods */
        .payment-methods {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .payment-method {
            padding: 1.5rem;
            border: 2px solid #E5E7EB;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .payment-method:hover {
            border-color: var(--mdr-orange);
        }
        
        .payment-method.selected {
            border-color: var(--mdr-orange);
            background: rgba(255, 107, 53, 0.05);
        }
        
        .payment-method i {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: var(--mdr-blue);
        }
        
        .payment-method.selected i {
            color: var(--mdr-orange);
        }
        
        .payment-method span {
            display: block;
            font-weight: 600;
            color: var(--mdr-text);
        }
        
        /* PIX QR Code */
        .pix-container {
            text-align: center;
            padding: 2rem;
        }
        
        .pix-qr {
            width: 200px;
            height: 200px;
            min-height: 200px;
            margin: 0 auto 1.5rem;
            border: 4px solid var(--mdr-orange);
            border-radius: 20px;
            padding: 10px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .pix-qr img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .pix-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-top: 1rem;
        }
        
        .pix-copy-paste {
            background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 1rem;
            word-break: break-all;
            color: #333;
            font-family: 'Courier New', monospace;
            font-size: 0.75rem;
            line-height: 1.4;
            border: 1px solid #ddd;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.08);
            font-family: monospace;
            font-size: 0.75rem;
        }
        
        .btn-copy-pix {
            padding: 1rem 2rem;
            background: var(--mdr-blue);
            color: var(--mdr-white);
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-copy-pix:hover {
            background: var(--mdr-blue-light);
        }
        
        .pix-timer {
            margin-top: 1.5rem;
            padding: 1rem;
            background: #FEF3C7;
            border-radius: 10px;
            color: #92400E;
            font-weight: 600;
        }
        
        .btn-ja-paguei {
            margin-top: 1rem;
            padding: 1rem 2rem;
            background: var(--mdr-orange);
            color: var(--mdr-white);
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-ja-paguei:hover {
            background: var(--mdr-orange-dark);
            transform: translateY(-2px);
        }
        
        /* Upload Comprovante */
        .comprovante-section {
            display: none;
            text-align: center;
            padding: 2rem;
        }
        .comprovante-section.active {
            display: block;
        }
        .pix-content.hidden {
            display: none !important;
        }
        .upload-area {
            border: 2px dashed rgba(255,107,53,0.5);
            border-radius: 16px;
            padding: 2rem;
            margin: 1.5rem 0;
            background: rgba(255,107,53,0.05);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .upload-area:hover, .upload-area.dragover {
            border-color: var(--mdr-orange);
            background: rgba(255,107,53,0.1);
        }
        .upload-area svg {
            width: 48px;
            height: 48px;
            margin-bottom: 1rem;
            color: var(--mdr-orange);
        }
        .upload-text { font-weight: 600; margin-bottom: 0.5rem; }
        .upload-subtext { font-size: 0.85rem; color: var(--mdr-text-light); }
        .file-preview { display: none; margin: 1rem 0; padding: 1rem; background: #f0f0f0; border-radius: 10px; color: #333; }
        .btn-voltar-pix {
            margin-top: 1rem;
            padding: 0.75rem 1.5rem;
            background: transparent;
            color: var(--mdr-text-light);
            border: 1px solid rgba(0,0,0,0.2);
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
        }
        .btn-voltar-pix:hover { background: rgba(0,0,0,0.05); }
        
        /* Card Form */
        .card-form {
            margin-top: 1.5rem;
        }
        
        .card-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        .btn-process-payment {
            width: 100%;
            padding: 1.25rem;
            background: var(--mdr-orange);
            color: var(--mdr-white);
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }
        
        .btn-process-payment:hover {
            background: var(--mdr-orange-dark);
        }
        
        .btn-process-payment:disabled {
            background: #9CA3AF;
            cursor: not-allowed;
        }
        
        /* Success State */
        .success-container {
            text-align: center;
            padding: 3rem 2rem;
        }
        
        .success-icon {
            width: 100px;
            height: 100px;
            background: #10B981;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin: 0 auto 2rem;
            animation: successPop 0.5s ease;
        }
        
        @keyframes successPop {
            0% { transform: scale(0); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }
        
        .success-container h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            color: var(--mdr-blue);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }
        
        .success-container p {
            color: var(--mdr-text-light);
            margin-bottom: 0.5rem;
        }
        
        .success-number {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            color: var(--mdr-orange);
            font-weight: 700;
            margin: 1rem 0;
        }
        
        /* Loading Spinner */
        .loading-spinner {
            display: none;
            text-align: center;
            padding: 3rem;
        }
        
        .loading-spinner.show {
            display: block;
        }
        
        .spinner {
            width: 60px;
            height: 60px;
            border: 4px solid var(--mdr-gray);
            border-top-color: var(--mdr-orange);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 1rem;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Info Section */
        .info-section {
            background: var(--mdr-white);
            padding: 5rem 0;
        }
        
        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .info-card {
            padding: 2rem;
            background: var(--mdr-gray);
            border-radius: 16px;
            transition: all 0.3s ease;
        }
        
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .info-card-icon {
            width: 60px;
            height: 60px;
            background: var(--mdr-orange);
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .info-card h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            color: var(--mdr-blue);
            margin-bottom: 0.75rem;
            text-transform: uppercase;
        }
        
        .info-card p {
            color: var(--mdr-text-light);
            line-height: 1.6;
        }

        /* Galeria Responsiva */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }
        
        .gallery-large {
            grid-column: span 2;
            grid-row: span 2;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block !important;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .gallery-large {
                grid-column: span 2;
                grid-row: span 1;
            }
            
            .header-container {
                padding: 1rem;
            }
            
            .hero-section {
                min-height: 80vh;
                padding: 2rem 1rem;
            }
            
            .hero-event-info {
                flex-direction: column;
                gap: 1rem;
                padding: 1.5rem;
            }
            
            .hero-divider {
                width: 60%;
                height: 1px;
            }
            
            .races-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .stat-item h3 {
                font-size: 2.5rem;
            }
            
            .cart-sidebar {
                width: 100%;
                right: -100%;
            }
            
            .payment-methods {
                grid-template-columns: 1fr;
            }
            
            .card-form-row {
                grid-template-columns: 1fr;
            }
            
            .modal-content {
                max-height: 95vh;
                border-radius: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .display-title {
                font-size: 2.5rem;
            }
            
            .hero-promo-badge {
                font-size: 0.875rem;
                padding: 0.5rem 1.5rem;
            }
            
            .race-distance {
                font-size: 3rem;
            }
            
            .race-price {
                font-size: 2rem;
            }
            
            .race-price-value {
                font-size: 2.5rem;
            }
        }
        
        /* Cookie Consent Modal - compacto (< 25% da tela) */
        .cookie-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }
        .cookie-modal {
            background: var(--mdr-white);
            border-radius: 12px;
            width: 100%;
            max-width: 360px;
            max-height: 24vh;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }
        .cookie-modal-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            background: var(--mdr-blue);
            color: var(--mdr-white);
            font-family: 'Oswald', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
        }
        .cookie-modal-header i {
            color: var(--mdr-orange);
        }
        .cookie-modal-text {
            padding: 0.85rem 1rem;
            font-size: 0.8rem;
            color: var(--mdr-text);
            line-height: 1.45;
            margin: 0;
        }
        .cookie-modal-text a {
            color: var(--mdr-orange);
            text-decoration: underline;
        }
        .cookie-modal-actions {
            display: flex;
            gap: 0.5rem;
            padding: 0 1rem 1rem;
        }
        .cookie-btn {
            flex: 1;
            padding: 0.5rem 0.75rem;
            border: none;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        .cookie-btn-reject {
            background: #f0f0f0;
            color: var(--mdr-text-light);
        }
        .cookie-btn-reject:hover {
            background: #e5e5e5;
        }
        .cookie-btn-accept {
            background: var(--mdr-orange);
            color: white;
        }
        .cookie-btn-accept:hover {
            background: var(--mdr-orange-dark);
        }

        /* PIX 10% OFF Card */
        .pix-discount-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: linear-gradient(135deg, #E8FBF6 0%, #D1F5EB 100%);
            border: 2px dashed #32BCAD;
            border-radius: 14px;
            padding: 1rem 1.25rem;
            margin: 1.5rem 0 1rem;
            position: relative;
        }
        .pix-discount-badge {
            background: white;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(50,188,173,0.25);
        }
        .pix-discount-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            color: #0A4A42;
        }
        .pix-discount-text strong {
            font-family: 'Oswald', sans-serif;
            font-size: 1.15rem;
            text-transform: uppercase;
            letter-spacing: 0.02em;
        }
        .pix-discount-text span {
            font-size: 0.8rem;
            color: #2D6B62;
        }
        .pix-discount-tag {
            background: #32BCAD;
            color: white;
            font-weight: 800;
            font-size: 1rem;
            padding: 0.4rem 0.75rem;
            border-radius: 8px;
            font-family: 'Oswald', sans-serif;
            letter-spacing: 0.05em;
        }
