.elementor-94 .elementor-element.elementor-element-c5e2675{--display:flex;}/* Start custom CSS *//* Importa a fonte Oswald do Google Fonts para um visual mais próximo ao da imagem */
        @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap');

        body, button {
            /* Define a fonte 'Oswald' como padrão para todo o corpo e botões, garantindo consistência */
            margin: 0;
            padding: 0;
            font-family: 'Oswald', Arial !important;
        }

        body {
            background-color: #f0f0f0 !important;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .container {
            width: 100%;
            max-width: 600px;
            background-color: #ffffff !important;
            text-align: center;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
        }

        .header {
            background-color: #e50914 !important; /* Vermelho vibrante */
            padding: 20px;
            color: white !important;
        }

        .timer-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 20px 0;
        }

        .timer-box {
            background-color: #000000 !important;
            border: 2px solid #333;
            border-radius: 10px;
            padding: 15px 25px;
        }

        .timer-box .time {
            font-size: 4rem;
            font-weight: bold;
            line-height: 1;
        }

        .timer-box .label {
            font-size: 1rem;
            letter-spacing: 1px;
        }

        .header h2 {
            font-size: 1.5rem;
            margin: 20px 0 0 0;
            text-transform: uppercase;
        }

        .purchase-banner {
            background-color: #000000 !important;
            color: white !important;
            padding: 15px;
            font-size: 1.2rem;
            text-transform: uppercase;
        }

        .progress-section {
            padding: 25px;
            background-color: white !important;
        }

        .progress-bar-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            width: 90%;
            margin: 0 auto;
            background-color: #e0e0e0 !important;
            border-radius: 50px;
            padding: 5px;
        }

        .progress-label {
            color: #4CAF50 !important; /* Verde */
            font-size: 0.9rem;
            white-space: nowrap;
            padding-left: 15px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .progress-bar {
            width: 100%;
            height: 30px;
            background-color: #e0e0e0 !important;
            border-radius: 50px;
            overflow: hidden; /* Garante que a barra interna não ultrapasse as bordas arredondadas */
        }
        
        .progress-bar-fill {
            width: 80%;
            height: 100%;
            background: linear-gradient(90deg, #4CAF50, #81C784) !important; /* Gradiente no verde */
            border-radius: 50px;
            /* Animação da barra de progresso */
            animation: fillAnimation 2s ease-out forwards;
        }

        /* Keyframes para a animação da barra de progresso */
        @keyframes fillAnimation {
            from { width: 0%; }
            to { width: 80%; }
        }

        .main-button {
            display: block;
            width: 80%;
            margin: 25px auto;
            padding: 20px;
            background-color: #4CAF50 !important; /* Verde */
            color: white !important;
            border: none;
            border-radius: 8px;
            font-size: 1.5rem;
            font-weight: bold;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background-color 0.3s, transform 0.2s;
        }
        
        .main-button:hover {
            background-color: #45a049 !important;
            transform: scale(1.02); /* Efeito de zoom suave ao passar o mouse */
        }

        .almost-there {
            font-size: 1.4rem;
            font-weight: bold;
            color: #333 !important;
            margin: 40px 20px;
            padding: 10px 0;
            border-top: 2px solid #ccc;
            border-bottom: 2px solid #ccc;
            text-transform: uppercase;
        }

        .final-confirmation {
            font-size: 2.2rem;
            font-weight: bold;
            margin: 30px 0 50px 0;
            text-transform: uppercase;
        }

        .final-confirmation .green-text {
            color: #4CAF50 !important; /* Verde */
        }/* End custom CSS */