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

        body {
            font-family: 'Inter', sans-serif;
            background-color: white;
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header Section */
        .header-section {
            text-align: center;
            margin-bottom: 40px;
        }

        .main-title {
            font-size: 2.5rem;
            font-weight: 300;
            color: #374151;
            margin-bottom: 40px;
            font-family: 'Gotham-Light';
            margin-top: 2rem;
        }

        .main-title .number {
            color: #ef4444;
            font-weight: 600;
        }

        /* Steps Section */
        .steps-section {
            background-color: #f3f4f6;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
        }

        .step {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            gap: 16px;
        }

        .step:last-child {
            margin-bottom: 0;
        }

        .step-number {
            background-color: #ef4444;
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .step-content {
            flex: 1;
            font-size: 1rem;
            color: #374151;
            font-family: 'Gotham-Light';
        }

        .step-content .bold {
            font-weight: 600;
            font-family: 'Gotham-Black';
        }

        /* Black Banner */
        .black-banner {
            background-color: #000;
            color: white;
            text-align: center;
            padding: 16px 24px;
            border-radius: 25px;
            /* margin-bottom: 30px; */
            font-size: 1.125rem;
            font-weight: 600;
        }

        /* Register Button */
        .register-btn {
            background-color: #ef4444;
            color: white;
            border: none;
            padding: 7px 40px;
            border-radius: 51px;
            font-size: 1.75rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            margin: 2rem auto 40px auto;
        }

        .register-btn:hover {
            background-color: #dc2626;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            font-family: 'Gotham-Black';
        }

        /* Prizes Section */
        .prizes-title {
            font-size: 2.2rem;
            font-weight: 300;
            color: #374151;
            text-align: center;
            margin-bottom: 30px;
            font-family: 'Gotham-Light';
        }

        .prizes-banner {
            background-color: #000;
            color: white;
            text-align: center;
            padding: 20px 24px;
            border-radius: 25px;
            margin-bottom: 40px;
            font-size: 1rem;
            font-weight: 500;
            line-height: 1.4;
        }

        /* Prize Items - Corregidos */
        .prizes-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .prize-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            gap: 20px;
        }

        .prize-item:last-child {
            margin-bottom: 0;
        }

        .prize-icon {
            width: 300px;
            height: auto;
            flex-shrink: 0;
        }

        .prize-content {
            flex: 1;
        }

        .prize-content .prize-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #374151;
            margin: 0;
            font-family: 'Gotham-Black';
            line-height: 1.2;
        }

        .prize-content .prize-amount {
            font-size: 1.1rem;
            font-weight: 700;
            color: #ef4444;
            margin: 0;
            line-height: 1.2;
            font-family: 'Gotham-Medium';
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }

            .main-title {
                font-size: 2rem;
            }

            .steps-section {
                padding: 24px;
            }

            .step {
                align-items: flex-start;
            }

            .prizes-title {
                font-size: 1.8rem;
            }

            .prizes-container {
                max-width: 100%;
            }

            .prize-item {
                align-items: flex-start;
                gap: 15px;
            }

            .prize-icon {
                /* width: 45px; */
                margin-left: 2rem;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 1.75rem;
            }

            .steps-section {
                padding: 20px;
                border-radius: 15px;
            }

            .black-banner,
            .prizes-banner {
                padding: 12px 16px;
                font-size: 1rem;
            }

            .register-btn {
                padding: 10px 32px;
                font-size: 1rem;
            }

            .prize-icon {
                width: 84%;
                margin-left: 4%;
            }

            .prize-content .prize-title {
                font-size: 1rem;
            }

            .prize-content .prize-amount {
                font-size: 1rem;
            }
        }