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

        body, html {
            height: 100%;
            width: 100%;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow: hidden;
        }

        /* Contêiner de fundo */
        .background-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            /* height: 100%; */
            z-index: -2;
            overflow: hidden;
        }

        /* Imagem de fundo com desfoque */
        .background-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: blur(10px);
            transform: scale(1.05);
        }

        /* Overlay semi-transparente para melhor contraste */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(0 0 0 / 80%);
            z-index: -1;
        }

        /* Conteúdo centralizado */
        .content {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            width: 100%;
            padding: 20px;
            z-index: 1;
        }

        /* Contêiner do botão */
        .button-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        /* Botão principal */
        .btn-continue {
            position: relative;
            padding: 16px 40px;
            font-size: 18px;
            font-weight: 700;
            color: #000;
            background:#e8c547;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            overflow: hidden;
            z-index: 1;
            min-width: 280px;
            text-align: center;
            text-transform: capitalize;
            letter-spacing: 0px;
            /* Animação removida */
        }

        /* Efeito de hover */
        .btn-continue:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
            background:#e8c547;
        }

        /* Efeito de clique */
        .btn-continue:active {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        /* Animação de pulsação - Removida */
        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
                transform: scale(1);
            }
        }

        /* Animação de entrada */
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .button-container {
            animation: slideUp 0.6s ease-out;
        }

        /* Spinner de carregamento */
        .spinner-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            animation: slideUp 0.6s ease-out;
        }

        .spinner {
            width: 60px;
            height: 60px;
            border: 5px solid rgba(212, 165, 116, 0.3);
            border-top: 5px solid #d4a574;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .verification-text {
            font-size: 18px;
            font-weight: 600;
            color: #d4a574;
            text-align: center;
        }

        /* Aprovação - Checkmark */
        .approval-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            animation: slideUp 0.6s ease-out;
        }

        .checkmark-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #e8c547;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
        }

        .checkmark-circle i {
            font-size: 40px;
            color: #000;
        }

        @keyframes popIn {
            0% {
                transform: scale(0);
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }

        .approval-text {
            font-size: 24px;
            font-weight: 700;
            color: #d4a574;
            text-align: center;
            animation: slideUp 0.8s ease-out 0.3s both;
        }

        /* Confetti */
        .confetti {
            position: fixed;
            width: 10px;
            height: 10px;
            pointer-events: none;
        }

        /* Botão com pulso */
        .btn-continue.pulse-animation {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 12px 35px rgba(212, 165, 116, 0.5);
                transform: scale(1.05);
            }
        }

        /* Responsividade para tablets */
        @media (max-width: 768px) {
            .btn-continue {
                padding: 14px 32px;
                font-size: 16px;
                min-width: 240px;
            }

            .background-image {
                filter: blur(8px);
            }
        }

        /* Responsividade para celulares */
        @media (max-width: 480px) {
            .btn-continue {
                padding: 12px 24px;
                font-size: 14px;
                min-width: 200px;
                letter-spacing: 0.5px;
            }

            .background-image {
                filter: blur(6px);
            }
        }