/* ============================================
   MODAL DE EXPORTAÇÃO
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-container {
    background: var(--surface-0);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 500px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--surface-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-body {
    padding: 1.5rem;
    max-height: calc(90vh - 130px);
    overflow-y: auto;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--surface-200);
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.export-options {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.export-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface-50);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.export-card:hover {
    background: var(--surface-0);
    border-color: var(--primary-200);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.export-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.export-info {
    flex: 1;
    min-width: 0;
}

.export-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.export-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.tag {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tag.recommended {
    background: var(--primary-100);
    color: var(--primary);
}

.tag.embroidery {
    background: var(--success-light);
    color: var(--success);
}