/**
 * Estilos para a página de Processamento Avançado
 * Advanced Processing Page Styles
 */

/* Estilos específicos de preset removidos - agora em preset-common.css */


.feature-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--bs-primary);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.processing-step {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--bs-primary);
}

.processing-step.completed {
    border-left-color: var(--bs-success);
    background: linear-gradient(135deg, #d1edff, #ffffff);
}

.processing-step.error {
    border-left-color: var(--bs-danger);
    background: linear-gradient(135deg, #ffe6e6, #ffffff);
}

.hierarchy-preview {
    font-family: 'Courier New', monospace;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.validation-warning {
    background: linear-gradient(135deg, #fff3cd, #ffffff);
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
}

.validation-error {
    background: linear-gradient(135deg, #f8d7da, #ffffff);
    border: 1px solid #dc3545;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
}

.ocr-progress {
    background: linear-gradient(45deg, #e3f2fd, #ffffff);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #2196f3;
}

.alert-sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

