.thankyoupage-minified-container {
    background: #f8f9fa;
    min-height: calc(100vh - 4rem);
    padding: 2rem 0;
}

.thankyoupage-minified-card {
    background: white;
    border-radius: var(--bs-border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
    animation: fade-in 0.2s ease-in;
}

/* Ícone de Sucesso (exemplo original) */
.success-icon {
    width: 80px;
    height: 80px;
    background: var(--bs-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: pulseSuccess 2s infinite;
}

.processing-icon {
    width: 80px;
    height: 80px;
    background: var(--bs-warning);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.primary-icon {
    width: 80px;
    height: 80px;
    background: var(--bs-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
/* Ícone avatar */
.avatar-icon {
    width: 40px;
    height: 40px;
    background: var(--bs-background-alternate);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Ícone de Erro 400 - Bad Request */
.error-400-icon {
    width: 80px;
    height: 80px;
    background: var(--bs-danger);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Ícone de Erro 401 - Unauthorized */
.error-401-icon {
    width: 80px;
    height: 80px;
    background: var(--bs-warning);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Ícone de Erro 403 - Forbidden */
.error-403-icon {
    width: 80px;
    height: 80px;
    background: var(--bs-danger);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Ícone de Erro 404 - Not Found */
.error-404-icon {
    width: 80px;
    height: 80px;
    background: var(--bs-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Ícone de Erro 408 - Request Timeout */
.error-408-icon {
    width: 80px;
    height: 80px;
    background: var(--bs-warning);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Rate limit error icon */
.error-429-icon {
    width: 80px;
    height: 80px;
    background: var(--bs-danger);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Ícone de Erro 500 - Internal Server Error */
.error-500-icon {
    width: 80px;
    height: 80px;
    background: var(--bs-danger);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Ícone de Erro 502 - Bad Gateway */
.error-502-icon {
    width: 80px;
    height: 80px;
    background: var(--bs-indigo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Ícone de Erro 503 - Service Unavailable */
.error-503-icon {
    width: 80px;
    height: 80px;
    background: var(--bs-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Ícone de Pedido Expirado */
.expired-icon {
    width: 80px;
    height: 80px;
    background: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.failed-icon {
    width: 80px;
    height: 80px;
    background: var(--bs-danger);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.minified-div-text {
    max-width: 342px;
}

/* Animações */
@keyframes pulseSuccess {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(108, 117, 125, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(108, 117, 125, 0);
    }
}

.payment-alternate-container {
    border-radius: var(--bs-border-radius);
    border: 2px dashed var(--bs-border-color);
    transition: all 0.3s ease;
}

.timer-container {
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-primary));
    color: white;
    animation: timerPulse 1s infinite alternate;
}

@keyframes timerPulse {
    from {
        opacity: 0.9;
    }

    to {
        opacity: 1;
    }
}

.step-number {
    width: 28px;
    height: 28px;
    background: transparent;
    color: black;
    border: 1px solid;
    border-radius: 50%;
    border-color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 14px;
}

.support-card {
    background: #f8f9fa;
    color: #495057;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #dee2e6;
}

.support-card .btn {
    background: white;
    border: 1px solid #dee2e6;
    color: #495057;
    transition: all 0.3s ease;
}

.support-card .btn:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: white;
    transform: translateY(-1px);
}

.order-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #dee2e6;
}

.btn-primary {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover {
    background: #0056b3;
    border-color: #004085;
}

.btn-success {
    background: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background: #218838;
    border-color: #1e7e34;
}

.btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-outline-primary:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: white;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.alert-info {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #495057;
}

.alert-info .alert-heading {
    color: var(--bs-primary);
}

.pix-icon {
    color: var(--bs-primary);
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .thankyoupage-minified-container {
        padding: 1rem 0;
    }

    .thankyoupage-minified-card {
        margin: 0 1rem;
        border-radius: 12px;
    }
}

.tk-order-content-failed {
    width: 100% !important;
    height: 90vh;
}